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_MESHGRIDPLANESLICE_ 00024 #define _MO_MESHGRIDPLANESLICE_ 00025 00026 #include <MeshVizXLM/mapping/nodes/MoMeshSurfaceRepresentation.h> 00027 00028 #include <Inventor/fields/SoSFPlane.h> 00029 00030 #ifdef _WIN32 00031 #pragma warning(push) 00032 #pragma warning(disable:4251) 00033 #endif 00034 00035 class MiGridPlaneSliceExtractUnstructured; 00036 class MiGridPlaneSliceExtractHexahedronIjk; 00037 class MiGridPlaneSliceExtractIjk; 00038 00075 class MESHVIZXLM_DMAP_API MoMeshGridPlaneSlice : public MoMeshSurfaceRepresentation { 00076 00077 SO_NODE_HEADER(MoMeshGridPlaneSlice) ; 00078 00079 public: 00080 00084 MoMeshGridPlaneSlice() ; 00085 00089 SoSFPlane plane; 00090 00094 SoSFFloat step; 00095 00097 00102 const MiGridPlaneSliceExtractUnstructured* getUnstructuredExtractor(); 00103 const MiGridPlaneSliceExtractHexahedronIjk* getHexahedronIjkExtractor(); 00104 const MiGridPlaneSliceExtractIjk* getIjkExtractor(); 00106 00107 #if 1 SoDEPRECATED 00109 const MiGridPlaneSliceExtractHexahedronIjk* getUnstructuredIjkExtractor(); 00110 #endif 00112 /*----------------------------------------------------------------------------*/ 00113 private: 00114 static void initClass() ; 00115 static void exitClass() ; 00116 00117 private: 00118 virtual void doExtract(SoAction *action); 00119 00120 } ; 00121 00122 #ifdef _WIN32 00123 #pragma warning(pop) 00124 #endif 00125 00126 #endif /* _MO_MESHGRIDPLANESLICE_ */ 00127 00128 00129 00130