00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef _MiSphereSliceExtractIjk_h
00024 #define _MiSphereSliceExtractIjk_h
00025
00026 #include <MeshVizXLM/extractors/MiBaseExtractor.h>
00027 #include <MeshVizXLM/mesh/data/MiDataSetIjk.h>
00028 #include <MeshVizXLM/extrmesh/data/MeXDataSetI.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
00065 class MESHVIZXLM_EXTR_API MiSphereSliceExtractIjk : virtual public MiBaseExtractor
00066 {
00067 public:
00068 virtual ~MiSphereSliceExtractIjk() {}
00069
00071
00074 static MiSphereSliceExtractIjk* getNewInstance(const MiVolumeMeshRegular& mesh, bool parallel = true, MiTessellator* tessellator=NULL);
00075 static MiSphereSliceExtractIjk* getNewInstance(const MiVolumeMeshCurvilinear& mesh, bool parallel = true, MiTessellator* tessellator=NULL);
00076 static MiSphereSliceExtractIjk* getNewInstance(const MiVolumeMeshRectilinear& mesh, bool parallel = true, MiTessellator* tessellator=NULL);
00077 static MiSphereSliceExtractIjk* getNewInstance(const MiVolumeMeshVertexHexahedronIjk& mesh, bool parallel = true, MiTessellator* tessellator=NULL);
00079
00088 virtual const MeXSurfaceMeshUnstructured& extractSlice(const MbVec3<double>& center, double radius, const MiCellFilterIjk* cellFilter=NULL) = 0;
00089
00093 virtual const MeXScalardSetI& extractScalarSet(const MiScalardSetIjk& inputSet) = 0;
00094
00098 virtual const MeXVec3dSetI& extractVec3Set(const MiVec3dSetIjk& inputSet) = 0;
00099
00103 virtual const MeXSurfaceMeshUnstructured& getExtract() const = 0;
00104
00105 };
00106
00107 #endif
00108
00109
00110