 |
VTK
9.0.1
|
Go to the documentation of this file.
28 #ifndef vtkDataSetSurfaceFilter_h
29 #define vtkDataSetSurfaceFilter_h
31 #include "vtkFiltersGeometryModule.h"
73 vtkSetMacro(PieceInvariant,
int);
74 vtkGetMacro(PieceInvariant,
int);
101 vtkSetStringMacro(OriginalCellIdsName);
104 return (this->OriginalCellIdsName ? this->OriginalCellIdsName :
"vtkOriginalCellIds");
106 vtkSetStringMacro(OriginalPointIdsName);
109 return (this->OriginalPointIdsName ? this->OriginalPointIdsName :
"vtkOriginalPointIds");
125 vtkSetMacro(NonlinearSubdivisionLevel,
int);
126 vtkGetMacro(NonlinearSubdivisionLevel,
int);
136 #ifdef VTK_USE_64BIT_IDS
141 for (
int cc = 0; cc < 6; cc++)
144 wholeExt[cc] = wholeExt32[cc];
146 return this->StructuredExecute(input, output, ext, wholeExt);
153 vtkIdType* wholeExt,
bool extractface[6]);
154 #ifdef VTK_USE_64BIT_IDS
155 virtual int UniformGridExecute(
160 for (
int cc = 0; cc < 6; cc++)
163 wholeExt[cc] = wholeExt32[cc];
165 return this->UniformGridExecute(input, output, ext, wholeExt, extractface);
194 int aAxis,
int bAxis,
int cAxis,
vtkIdType* wholeExt);
197 int aAxis,
int bAxis,
int cAxis,
vtkIdType* wholeExt,
bool checkVisibility);
200 int aAxis,
int bAxis,
int cAxis,
vtkIdType* wholeExt);
221 class vtkEdgeInterpolationMap;
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)
vtkFastGeomQuad * NewFastGeomQuad(int numPts)
represent and manipulate point attribute data
struct vtkFastGeomQuadStruct * Next
unsigned char ** FastGeomQuadArrays
vtkIdType FastGeomQuadArrayLength
vtkFastGeomQuad * QuadHashTraversal
topologically regular array of data
virtual const char * GetOriginalCellIdsName()
vtkIdType QuadHashTraversalIndex
vtkIdTypeArray * OriginalCellIds
vtkFastGeomQuad * GetNextVisibleQuadFromHash()
virtual void InsertTriInHash(vtkIdType a, vtkIdType b, vtkIdType c, vtkIdType sourceId, vtkIdType faceId=-1)
vtkTypeBool PassThroughCellIds
virtual void InsertPolygonInHash(const vtkIdType *ids, int numpts, vtkIdType sourceId)
vtkDataSetSurfaceFilter()
Extracts outer (polygonal) surface.
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)
char * OriginalCellIdsName
static vtkDataSetSurfaceFilter * New()
void InitFastGeomQuadAllocation(vtkIdType numberOfCells)
abstract class to specify cell behavior
char * OriginalPointIdsName
vtkIdType GetOutputPointId(vtkIdType inPtId, vtkDataSet *input, vtkPoints *outPts, vtkPointData *outPD)
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
Methods invoked by print to print information about the object including superclasses.
~vtkDataSetSurfaceFilter() override
vtkIdType NumberOfFastGeomQuadArrays
void RecordOrigPointId(vtkIdType newIndex, vtkIdType origId)
abstract class to specify dataset behavior
virtual int StructuredExecute(vtkDataSet *input, vtkPolyData *output, vtkIdType *ext, vtkIdType *wholeExt)
Direct access methods that can be used to use the this class as an algorithm without using it as a fi...
void DeleteAllFastGeomQuads()
virtual int StructuredWithBlankingExecute(vtkStructuredGrid *input, vtkPolyData *output)
dynamic, self-adjusting array of vtkIdType
vtkIdType NumberOfNewCells
vtkIdTypeArray * OriginalPointIds
virtual const char * GetOriginalPointIdsName()
virtual int UniformGridExecute(vtkDataSet *input, vtkPolyData *output, vtkIdType *ext, vtkIdType *wholeExt, bool extractface[6])
concrete dataset represents vertices, lines, polygons, and triangle strips
vtkEdgeInterpolationMap * EdgeMap
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
vtkIdType GetInterpolatedPointId(vtkIdType edgePtA, vtkIdType edgePtB, vtkDataSet *input, vtkCell *cell, double pcoords[3], vtkPoints *outPts, vtkPointData *outPD)
virtual int UnstructuredGridExecute(vtkDataSet *input, vtkPolyData *output)
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
vtkTypeBool PassThroughPointIds
void ExecuteFaceStrips(vtkDataSet *input, vtkPolyData *output, int maxFlag, vtkIdType *ext, int aAxis, int bAxis, int cAxis, vtkIdType *wholeExt)
int NonlinearSubdivisionLevel
Superclass for algorithms that produce only polydata as output.