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-2018 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 #include <MeshVizXLM/extractors/MiCylinderSliceExtractUnstructuredIjk.h> 00033 00034 #ifdef _WIN32 00035 #pragma warning(push) 00036 #pragma warning(disable:4251) 00037 #endif 00038 00039 class MiCylinderSliceExtractUnstructured; 00040 class MiCylinderSliceExtractHexahedronIjk; 00041 class MiCylinderSliceExtractIjk; 00042 00077 class MESHVIZXLM_DMAP_API MoMeshCylinderSlice : public MoMeshSurfaceRepresentation { 00078 00079 SO_NODE_HEADER(MoMeshCylinderSlice) ; 00080 00081 public: 00082 00086 MoMeshCylinderSlice() ; 00087 00091 SoSFVec3f center; 00092 00096 SoSFFloat radius; 00097 00101 SoSFVec3f direction; 00102 00104 00109 const MiCylinderSliceExtractUnstructured* getUnstructuredExtractor(); 00110 const MiCylinderSliceExtractHexahedronIjk* getHexahedronIjkExtractor(); 00111 const MiCylinderSliceExtractIjk* getIjkExtractor(); 00113 00114 #if 1 SoDEPRECATED 00116 const MiCylinderSliceExtractHexahedronIjk* getUnstructuredIjkExtractor(); 00117 #endif 00119 /*----------------------------------------------------------------------------*/ 00120 private: 00121 static void initClass() ; 00122 static void exitClass() ; 00123 00124 private: 00125 virtual void doExtract(SoAction *action); 00126 00127 private: 00128 virtual ~MoMeshCylinderSlice() ; 00129 00130 } ; 00131 00132 #ifdef _WIN32 00133 #pragma warning(pop) 00134 #endif 00135 00136 #endif /* _MO_MESHCYLINDERSLICE_ */ 00137 00138 00139 00140