Cell extractor for unstructured line meshes More...
#include <MeshVizXLM/extractors/MiLineCellExtractUnstructured.h>
Public Member Functions | |
virtual | ~MiLineCellExtractUnstructured () |
virtual const MeXPointMeshCurvilinear & | extractPoints (const std::vector< size_t > &cellIndex, double factor, const MiCellFilterI *cellFilter=NULL)=0 |
Creates a point mesh from the points of the line cells corresponding to the given indices in the original line mesh. | |
virtual const MeXPointMeshCurvilinear & | extractPoints (double factor, const MiCellFilterI *cellFilter=NULL)=0 |
Creates a point mesh from the points of the line cells of the entire input line mesh. | |
virtual const MeXPointMeshCurvilinear & | getPointExtract () const =0 |
Returns the result of the extraction as a point mesh. | |
Public Member Functions inherited from MiLineCellExtractI | |
virtual | ~MiLineCellExtractI () |
virtual const MeXLineMeshUnstructured & | extractCell (const std::vector< size_t > &cellIndex, double factor, const MiCellFilterI *cellFilter=NULL)=0 |
Create unstructured line meshes from the lines of the cells corresponding to the given indices in the original line mesh. | |
virtual const MeXLineMeshUnstructured & | extractCell (double factor, const MiCellFilterI *cellFilter=NULL)=0 |
Create unstructured line meshes from the lines of the cells in the entire line mesh. | |
virtual const MeXScalardSetI & | extractScalarSet (const MiScalardSetI &inputSet)=0 |
Extracts a scalar set from the original mesh. | |
virtual const MeXVec3dSetI & | extractVec3Set (const MiVec3dSetI &inputSet)=0 |
Extracts a vector set from the original mesh. | |
virtual const MeXLineMeshUnstructured & | getExtract () const =0 |
Returns the result of the extraction as a mesh. | |
Public Member Functions inherited from MiBaseExtractor | |
virtual | ~MiBaseExtractor () |
virtual void | setExtractorCallback (MiExtractorCallback *extractorCallback)=0 |
Set the user defined extractor callback which will be called before each extraction, during each extraction and after each extraction. | |
virtual SoDEPRECATED void | setExtractorCallback (MiExtractorCallback &extractorCallback) |
Static Public Member Functions | |
static MiLineCellExtractUnstructured * | getNewInstance (const MiLineMeshUnstructured &mesh, bool parallel=true, MiTessellator *tessellator=NULL) |
Factory method returning a new instance of a class implementing this interface. | |
Static Public Member Functions inherited from MiLineCellExtractI | |
static MiLineCellExtractI * | getNewInstance (const MiLineMeshRegular &mesh, bool parallel=true, MiTessellator *tessellator=NULL) |
Factory method returning a new instance of a class implementing this interface. | |
static MiLineCellExtractI * | getNewInstance (const MiLineMeshCurvilinear &mesh, bool parallel=true, MiTessellator *tessellator=NULL) |
Cell extractor for unstructured line meshes
Extracts a list of cells from an input unstructured line mesh and builds a line mesh or a point mesh containing the extracted cells.
Definition at line 47 of file MiLineCellExtractUnstructured.h.
|
inlinevirtual |
Definition at line 51 of file MiLineCellExtractUnstructured.h.
|
pure virtual |
Creates a point mesh from the points of the line cells corresponding to the given indices in the original line mesh.
Cells are scaled according to the given factor.
Shrinking: factor < 1
Expanding: factor > 1
|
pure virtual |
Creates a point mesh from the points of the line cells of the entire input line mesh.
Cells are scaled according to the given factor.
Shrinking: factor < 1
Expanding: factor > 1
|
static |
Factory method returning a new instance of a class implementing this interface.
mesh | The input mesh |
parallel | When true, tries to create an extract module using a parallel algorithm to speed up the extraction. |
tessellator | The tessellator object used for tessellating non linear cells (quadratic,...). |
|
pure virtual |
Returns the result of the extraction as a point mesh.