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-2017 BY FEI S.A.S, *** 00017 *** BORDEAUX, FRANCE *** 00018 *** ALL RIGHTS RESERVED *** 00019 **=======================================================================*/ 00020 /*======================================================================= 00021 ** Author : Martial Bonaventure (September 2010) 00022 **=======================================================================*/ 00023 #ifndef _MiNonOverlappedCellsExtractUnstructured_h 00024 #define _MiNonOverlappedCellsExtractUnstructured_h 00025 00026 #include <MeshVizXLM/extractors/MiBaseExtractor.h> 00027 #include <MeshVizXLM/mesh/data/MiDataSetI.h> 00028 #include <MeshVizXLM/extrmesh/data/MeXDataSetI.h> 00029 00030 #include <Inventor/STL/vector> 00031 00032 class MiCellFilterI; 00033 class MiSurfaceMeshUnstructured; 00034 class MeXSurfaceMeshUnstructured; 00035 00072 class MESHVIZXLM_EXTR_API MiNonOverlappedCellsExtractUnstructured : virtual public MiBaseExtractor 00073 { 00074 public: 00075 virtual ~MiNonOverlappedCellsExtractUnstructured() {} 00076 00082 static MiNonOverlappedCellsExtractUnstructured* getNewInstance(const MiSurfaceMeshUnstructured& mesh, bool parallel = true); 00083 00089 static MiNonOverlappedCellsExtractUnstructured* getNewInstance(const std::vector<const MiSurfaceMeshUnstructured*>& meshList, bool parallel = true); 00090 00091 00097 virtual const MeXSurfaceMeshUnstructured& extractSurface(const MiCellFilterI* cellFilter=NULL) = 0; 00098 00105 virtual const MeXSurfaceMeshUnstructured& extractSurface(const std::vector<const MiCellFilterI*>* cellFilters) = 0; 00106 00112 virtual const MeXScalardSetI& extractScalarSet(const MiScalardSetI& inputSet) =0; 00113 00114 /* 00115 * Extracts a scalar set from the list of meshes. The scalars are mapped onto the 00116 * current extracted mesh. 00117 * 00118 * @param scalarSets list that must contain same number of scalar sets as the number of input meshes 00119 * in getNewInstance(const std::vector<const MiSurfaceMeshUnstructured*>&, bool) 00120 */ 00121 virtual const MeXScalardSetI& extractScalarSet(const std::vector<const MiScalardSetI*>& scalarSets) =0; 00122 00128 virtual const MeXVec3dSetI& extractVec3Set(const MiVec3dSetI& inputSet) = 0; 00129 00137 virtual const MeXVec3dSetI& extractVec3Set(const std::vector<const MiVec3dSetI*>& vec3Sets) = 0; 00138 00139 00143 virtual const MeXSurfaceMeshUnstructured& getExtract() const = 0; 00144 00145 }; 00146 00147 #endif 00148 00149