00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef _MIISOSURFEXTRACTREGULAR_H
00024 #define _MIISOSURFEXTRACTREGULAR_H
00025
00026 #include <MeshVizXLM/mesh/data/MiDataSetIjk.h>
00027 #include <MeshVizXLM/extrmesh/data/MeXDataSetI.h>
00028 #include <MeshVizXLM/extractors/MiBaseExtractor.h>
00029 #include <MeshVizXLM/extrmesh/MeXSurfaceMeshUnstructured.h>
00030
00031 class MiCellFilterIjk;
00032 class MiVolumeMeshRegular;
00033 class MiVolumeMeshCurvilinear;
00034 class MiVolumeMeshRectilinear;
00035 class MiVolumeMeshVertexHexahedronIjk;
00036 class MiTessellator;
00037
00047 class MESHVIZXLM_EXTR_API MiIsosurfExtractIjk : virtual public MiBaseExtractor
00048 {
00049 public:
00050 virtual ~MiIsosurfExtractIjk() {}
00051
00053
00056 static MiIsosurfExtractIjk* getNewInstance(const MiVolumeMeshRegular& mesh, bool parallel = true, MiTessellator* tessellator=NULL);
00057 static MiIsosurfExtractIjk* getNewInstance(const MiVolumeMeshCurvilinear& mesh, bool parallel = true, MiTessellator* tessellator=NULL);
00058 static MiIsosurfExtractIjk* getNewInstance(const MiVolumeMeshRectilinear& mesh, bool parallel = true, MiTessellator* tessellator=NULL);
00059 static MiIsosurfExtractIjk* getNewInstance(const MiVolumeMeshVertexHexahedronIjk& mesh, bool parallel = true, MiTessellator* tessellator=NULL);
00061
00073 virtual const MeXSurfaceMeshUnstructured& extractIsovalue(double isovalue, const MiScalardSetIjk& dataSet, const MiCellFilterIjk* cellFilter=NULL) = 0;
00074
00082 virtual const MeXScalardSetI& extractScalarSet(const MiScalardSetIjk& inputSet) = 0;
00083
00091 virtual const MeXVec3dSetI& extractVec3Set(const MiVec3dSetIjk& inputSet) = 0;
00092
00096 virtual const MeXSurfaceMeshUnstructured& getExtract() const = 0;
00097
00098
00099 } ;
00100
00101
00102 #endif
00103
00104
00105