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 _MiTessellatedSurfaceExtract_h 00024 #define _MiTessellatedSurfaceExtract_h 00025 00026 #include <MeshVizXLM/extractors/MiBaseExtractor.h> 00027 #include <MeshVizXLM/mesh/data/MiDataSetI.h> 00028 #include <MeshVizXLM/extrmesh/MeXSurfaceMeshUnstructured.h> 00029 #include <MeshVizXLM/extrmesh/MeXLineMeshUnstructured.h> 00030 #include <MeshVizXLM/extrmesh/data/MeXDataSetI.h> 00031 00032 #include <Inventor/STL/vector> 00033 00034 class MiCellFilterI; 00035 class MiSurfaceMeshUnstructured; 00036 class MiTessellator; 00037 class MeXPointMeshCurvilinear; 00038 00047 class MESHIVIZ_API MiTessellatedSurfaceExtract : virtual public MiBaseExtractor 00048 { 00049 public: 00050 virtual ~MiTessellatedSurfaceExtract() {} 00051 00055 static MiTessellatedSurfaceExtract* getNewInstance(const MiSurfaceMeshUnstructured& mesh, bool parallel = true); 00056 00065 virtual const MeXSurfaceMeshUnstructured& tessellate(MiTessellator& tesselator, const MiCellFilterI* cellFilter=NULL) = 0; 00066 00075 virtual const MeXLineMeshUnstructured& tessellateLine(MiTessellator& tesselator, const MiCellFilterI* cellFilter=NULL) = 0; 00076 00084 virtual const MeXPointMeshCurvilinear& extractPoints( const MiCellFilterI* cellFilter=NULL) =0; 00085 00097 virtual const MeXScalardSetI& extractScalarSet(const MiScalardSetI& inputSet) =0; 00098 00110 virtual const MeXVec3dSetI& extractVec3Set(const MiVec3dSetI& inputSet) = 0; 00111 00115 virtual const MeXSurfaceMeshUnstructured& getExtract() const = 0; 00116 00120 virtual const MeXLineMeshUnstructured& getLineExtract() const = 0; 00121 00125 virtual const MeXPointMeshCurvilinear& getPointExtract() const = 0; 00126 00127 }; 00128 00129 #endif 00130 00131