00001 /*======================================================================= 00002 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), *** 00003 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. *** 00004 *** *** 00005 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS *** 00006 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR *** 00007 *** WRITTEN AUTHORIZATION OF FEI S.A.S. *** 00008 *** *** 00009 *** RESTRICTED RIGHTS LEGEND *** 00010 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS *** 00011 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN *** 00012 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT *** 00013 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN *** 00014 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. *** 00015 *** *** 00016 *** COPYRIGHT (C) 1996-2020 BY FEI S.A.S, *** 00017 *** BORDEAUX, FRANCE *** 00018 *** ALL RIGHTS RESERVED *** 00019 **=======================================================================*/ 00020 /*======================================================================= 00021 ** Author : VSG (MMM YYYY) 00022 **=======================================================================*/ 00023 #ifndef _MO_MESHCYLINDERSLICE_ 00024 #define _MO_MESHCYLINDERSLICE_ 00025 00026 #include <Inventor/fields/SoSFFloat.h> 00027 #include <Inventor/fields/SoSFVec3f.h> 00028 00029 #include <MeshVizXLM/MbVec3.h> 00030 00031 #include <MeshVizXLM/mapping/nodes/MoMeshSurfaceRepresentation.h> 00032 00033 #ifdef _WIN32 00034 #pragma warning(push) 00035 #pragma warning(disable:4251) 00036 #endif 00037 00038 class MiCylinderSliceExtractUnstructured; 00039 class MiCylinderSliceExtractUnstructuredIjk; 00040 class MiCylinderSliceExtractIjk; 00041 00076 class MESHIVIZDM_API MoMeshCylinderSlice : public MoMeshSurfaceRepresentation { 00077 00078 SO_NODE_HEADER(MoMeshCylinderSlice) ; 00079 00080 public: 00081 00085 MoMeshCylinderSlice() ; 00086 00090 SoSFVec3f center; 00091 00095 SoSFFloat radius; 00096 00100 SoSFVec3f direction; 00101 00103 00108 const MiCylinderSliceExtractUnstructured* getUnstructuredExtractor(); 00109 const MiCylinderSliceExtractUnstructuredIjk* getUnstructuredIjkExtractor(); 00110 const MiCylinderSliceExtractIjk* getIjkExtractor(); 00112 00113 /*----------------------------------------------------------------------------*/ 00114 private: 00115 static void initClass() ; 00116 static void exitClass() ; 00117 00118 private: 00119 virtual void doExtract(SoAction *action); 00120 00121 private: 00122 virtual ~MoMeshCylinderSlice() ; 00123 00124 } ; 00125 00126 #ifdef _WIN32 00127 #pragma warning(pop) 00128 #endif 00129 00130 #endif /* _MO_MESHCYLINDERSLICE_ */ 00131 00132 00133 00134