 |
VTK
9.1.0
|
Go to the documentation of this file.
197 #ifndef vtkDataSetSurfaceFilter_h
198 #define vtkDataSetSurfaceFilter_h
200 #include "vtkFiltersGeometryModule.h"
204 template <
typename ArrayType>
261 vtkSetMacro(PieceInvariant,
int);
262 vtkGetMacro(PieceInvariant,
int);
287 vtkSetMacro(FastMode,
bool);
288 vtkGetMacro(FastMode,
bool);
289 vtkBooleanMacro(FastMode,
bool);
299 vtkSetStringMacro(OriginalCellIdsName);
300 virtual const
char* GetOriginalCellIdsName()
302 return (this->OriginalCellIdsName ? this->OriginalCellIdsName :
"vtkOriginalCellIds");
304 vtkSetStringMacro(OriginalPointIdsName);
307 return (this->OriginalPointIdsName ? this->OriginalPointIdsName :
"vtkOriginalPointIds");
323 vtkSetMacro(NonlinearSubdivisionLevel,
int);
324 vtkGetMacro(NonlinearSubdivisionLevel,
int);
345 #ifdef VTK_USE_64BIT_IDS
346 virtual int StructuredExecute(
351 for (
int cc = 0; cc < 6; cc++)
354 wholeExt[cc] = wholeExt32[cc];
356 return this->StructuredExecute(input, output, ext, wholeExt);
376 vtkIdType* wholeExt,
bool extractface[6]);
385 #ifdef VTK_USE_64BIT_IDS
387 const int* wholeExt32,
bool extractface[6])
391 for (
int cc = 0; cc < 6; cc++)
394 wholeExt[cc] = wholeExt32[cc];
396 return this->UniformGridExecute(input, output, ext, wholeExt, extractface);
423 int aAxis,
int bAxis,
int cAxis,
vtkIdType* wholeExt,
bool checkVisibility);
426 int aAxis,
int bAxis,
int cAxis,
vtkIdType* wholeExt);
449 class vtkEdgeInterpolationMap;
453 "Use GetInterpolatedPointId(vtkIdType edgePtA, vtkIdType edgePtB, vtkDataSet* input, vtkCell* "
454 "cell, double pcoords[3], double* weights, vtkPoints* outPts, vtkPointData* outPD) instead")
464 void InitFastGeomQuadAllocation(
vtkIdType numberOfCells);
466 void DeleteAllFastGeomQuads();
470 unsigned char** FastGeomQuadArrays;
481 char* OriginalCellIdsName;
486 char* OriginalPointIdsName;
488 int NonlinearSubdivisionLevel;
497 int StructuredExecuteNoBlanking(
represent and manipulate 3D points
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
virtual int DataSetExecute(vtkDataSet *input, vtkPolyData *output)
Execute the filter on input and store the result in output.
represent and manipulate point attribute data
struct vtkFastGeomQuadStruct * Next
a dataset that is topologically regular with variable spacing in the three coordinate directions
vtkFastGeomQuad * QuadHashTraversal
dataset represents arbitrary combinations of all possible cell types.
topologically regular array of data
Hold a reference to a vtkObjectBase instance.
#define VTK_DEPRECATED_IN_9_1_0(reason)
vtkIdType QuadHashTraversalIndex
vtkFastGeomQuad * GetNextVisibleQuadFromHash()
virtual void InsertTriInHash(vtkIdType a, vtkIdType b, vtkIdType c, vtkIdType sourceId, vtkIdType faceId=-1)
virtual void InsertPolygonInHash(const vtkIdType *ids, int numpts, vtkIdType sourceId)
vtkDataSetSurfaceFilter()
Extracts outer surface (as vtkPolyData) of any dataset.
int UnstructuredGridExecute(vtkDataSet *input, vtkPolyData *output, vtkGeometryFilterHelper *info)
Optimized UnstructuredGridExecute function for vtkUnstructuredGrid and subclass instances only.
void ExecuteFaceQuads(vtkDataSet *input, vtkPolyData *output, int maxFlag, vtkIdType *ext, int aAxis, int bAxis, int cAxis, vtkIdType *wholeExt)
virtual void InsertQuadInHash(vtkIdType a, vtkIdType b, vtkIdType c, vtkIdType d, vtkIdType sourceId)
static vtkDataSetSurfaceFilter * New()
Statndard methods for object instantiation, type information, and printing.
abstract class to specify cell behavior
vtkIdType GetOutputPointId(vtkIdType inPtId, vtkDataSet *input, vtkPoints *outPts, vtkPointData *outPD)
topologically and geometrically regular array of data
a simple class to control print indentation
void ExecuteFaceQuads(vtkDataSet *input, vtkPolyData *output, int maxFlag, vtkIdType *ext, int aAxis, int bAxis, int cAxis, vtkIdType *wholeExt, bool checkVisibility)
void InitializeQuadHash(vtkIdType numPoints)
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void PrintSelf(ostream &os, vtkIndent indent) override
Statndard methods for object instantiation, type information, and printing.
~vtkDataSetSurfaceFilter() override
abstract class to specify dataset behavior
virtual int StructuredExecute(vtkDataSet *input, vtkPolyData *output, vtkIdType *ext, vtkIdType *wholeExt)
Direct access methods so that this class can be used as an algorithm without using it as a filter (i....
dynamic, self-adjusting array of vtkIdType
virtual const char * GetOriginalPointIdsName()
If PassThroughCellIds or PassThroughPointIds is on, then these ivars control the name given to the fi...
virtual int UniformGridExecute(vtkDataSet *input, vtkPolyData *output, vtkIdType *ext, vtkIdType *wholeExt, bool extractface[6])
Direct access methods so that this class can be used as an algorithm without using it as a filter (i....
concrete dataset represents vertices, lines, polygons, and triangle strips
vtkEdgeInterpolationMap * EdgeMap
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
Efficient cell iterator for vtkDataSet topologies.
virtual int UnstructuredGridExecute(vtkDataSet *input, vtkPolyData *output)
Execute the filter on input and store the result in output.
vtkIdType GetOutputPointIdAndInterpolate(vtkIdType inPtId, vtkDataSet *input, vtkCell *cell, double *weights, vtkPoints *outPts, vtkPointData *outPD)
void InitQuadHashTraversal()
void EstimateStructuredDataArraySizes(vtkIdType *ext, vtkIdType *wholeExt, vtkIdType &numPoints, vtkIdType &numCells)
Estimates the total number of points & cells on the surface to render ext – the extent of the structu...
vtkFastGeomQuad ** QuadHash
Superclass for algorithms that produce only polydata as output.