VTK
9.1.0
|
concrete dataset represents vertices, lines, polygons, and triangle strips More...
#include <vtkPolyData.h>
Public Member Functions | |
virtual vtkTypeBool | IsA (const char *type) |
Standard methdos for type information and printing. | |
vtkPolyData * | NewInstance () const |
void | PrintSelf (ostream &os, vtkIndent indent) override |
Standard methdos for type information and printing. | |
int | GetDataObjectType () override |
Return what type of dataset this is. | |
void | CopyStructure (vtkDataSet *ds) override |
Copy the geometric and topological structure of an input poly data object. | |
void | CopyCells (vtkPolyData *pd, vtkIdList *idList, vtkIncrementalPointLocator *locator=nullptr) |
Copy cells listed in idList from pd, including points, point data, and cell data. | |
void | GetCellPoints (vtkIdType cellId, vtkIdList *ptIds) override |
Copy a cells point ids into list provided. | |
void | GetPointCells (vtkIdType ptId, vtkIdList *cellIds) override |
Efficient method to obtain cells using a particular point. | |
void | ComputeCellsBounds () |
Compute the (X, Y, Z) bounds of the data. | |
void | GetCellsBounds (double bounds[6]) |
Get the cells bounds. | |
void | Squeeze () override |
Recover extra allocated memory when creating data whose initial size is unknown. | |
int | GetMaxCellSize () override |
Return the maximum cell size in this poly data. | |
vtkIdType | GetCellIdRelativeToCellArray (vtkIdType cellId) |
Maps the cell at position cellId inside the vtkPolyData to its location in the corresponding cell array. | |
void | SetVerts (vtkCellArray *v) |
Set the cell array defining vertices. | |
vtkCellArray * | GetVerts () |
Get the cell array defining vertices. | |
void | SetLines (vtkCellArray *l) |
Set the cell array defining lines. | |
vtkCellArray * | GetLines () |
Get the cell array defining lines. | |
void | SetPolys (vtkCellArray *p) |
Set the cell array defining polygons. | |
vtkCellArray * | GetPolys () |
Get the cell array defining polygons. | |
void | SetStrips (vtkCellArray *s) |
Set the cell array defining triangle strips. | |
vtkCellArray * | GetStrips () |
Get the cell array defining triangle strips. | |
bool | AllocateEstimate (vtkIdType numCells, vtkIdType maxCellSize) |
Preallocate memory for the internal cell arrays. | |
bool | AllocateEstimate (vtkIdType numVerts, vtkIdType maxVertSize, vtkIdType numLines, vtkIdType maxLineSize, vtkIdType numPolys, vtkIdType maxPolySize, vtkIdType numStrips, vtkIdType maxStripSize) |
Preallocate memory for the internal cell arrays. | |
bool | AllocateExact (vtkIdType numCells, vtkIdType connectivitySize) |
Preallocate memory for the internal cell arrays. | |
bool | AllocateExact (vtkIdType numVerts, vtkIdType vertConnSize, vtkIdType numLines, vtkIdType lineConnSize, vtkIdType numPolys, vtkIdType polyConnSize, vtkIdType numStrips, vtkIdType stripConnSize) |
Preallocate memory for the internal cell arrays. | |
bool | AllocateCopy (vtkPolyData *pd) |
Preallocate memory for the internal cell arrays such that they are the same size as those in pd. | |
bool | AllocateProportional (vtkPolyData *pd, double ratio) |
Preallocate memory for the internal cell arrays such that they are proportional to those in pd by a factor of ratio (for instance, ratio = 2 allocates twice as many cells). | |
void | Allocate (vtkIdType numCells=1000, int vtkNotUsed(extSize)=1000) |
Method allocates initial storage for vertex, line, polygon, and triangle strip arrays. | |
void | Allocate (vtkPolyData *inPolyData, vtkIdType numCells=1000, int vtkNotUsed(extSize)=1000) |
Similar to the method above, this method allocates initial storage for vertex, line, polygon, and triangle strip arrays. | |
vtkIdType | InsertNextCell (int type, int npts, const vtkIdType pts[]) |
Insert a cell of type VTK_VERTEX, VTK_POLY_VERTEX, VTK_LINE, VTK_POLY_LINE, VTK_TRIANGLE, VTK_QUAD, VTK_POLYGON, or VTK_TRIANGLE_STRIP. | |
vtkIdType | InsertNextCell (int type, vtkIdList *pts) |
Insert a cell of type VTK_VERTEX, VTK_POLY_VERTEX, VTK_LINE, VTK_POLY_LINE, VTK_TRIANGLE, VTK_QUAD, VTK_POLYGON, or VTK_TRIANGLE_STRIP. | |
void | Reset () |
Begin inserting data all over again. | |
void | BuildCells () |
Create data structure that allows random access of cells. | |
bool | NeedToBuildCells () |
Check if BuildCells is needed. | |
void | BuildLinks (int initialSize=0) |
Create upward links from points to cells that use each point. | |
void | DeleteCells () |
Release data structure that allows random access of the cells. | |
void | DeleteLinks () |
Release the upward links from point to cells that use each point. | |
void | GetCellEdgeNeighbors (vtkIdType cellId, vtkIdType p1, vtkIdType p2, vtkIdList *cellIds) |
Get the neighbors at an edge. | |
unsigned char | GetCellPoints (vtkIdType cellId, vtkIdType &npts, vtkIdType const *&pts) |
Get a list of point ids that define a cell. | |
int | IsTriangle (int v1, int v2, int v3) |
Given three vertices, determine whether it's a triangle. | |
int | IsEdge (vtkIdType p1, vtkIdType p2) |
Determine whether two points form an edge. | |
int | IsPointUsedByCell (vtkIdType ptId, vtkIdType cellId) |
Determine whether a point is used by a particular cell. | |
void | ReplaceCellPoint (vtkIdType cellId, vtkIdType oldPtId, vtkIdType newPtId) |
Replace a point in the cell connectivity list with a different point. | |
void | ReverseCell (vtkIdType cellId) |
Reverse the order of point ids defining the cell. | |
void | RemoveDeletedCells () |
The cells marked by calls to DeleteCell are stored in the Cell Array VTK_EMPTY_CELL, but they still exist in the cell arrays. | |
vtkIdType | InsertNextLinkedCell (int type, int npts, const vtkIdType pts[]) |
Add a new cell to the cell data structure (after cell pointers have been built). | |
void | ReplaceLinkedCell (vtkIdType cellId, int npts, const vtkIdType pts[]) |
Replace one cell with another in cell structure. | |
void | RemoveCellReference (vtkIdType cellId) |
Remove all references to cell in cell structure. | |
void | AddCellReference (vtkIdType cellId) |
Add references to cell in cell structure. | |
void | RemoveReferenceToCell (vtkIdType ptId, vtkIdType cellId) |
Remove a reference to a cell in a particular point's link list. | |
void | AddReferenceToCell (vtkIdType ptId, vtkIdType cellId) |
Add a reference to a cell in a particular point's link list. | |
void | ResizeCellList (vtkIdType ptId, int size) |
Resize the list of cells using a particular point. | |
void | Initialize () override |
Restore object to initial state. | |
virtual int | GetGhostLevel () |
Get the ghost level. | |
unsigned long | GetActualMemorySize () override |
Return the actual size of the data in kibibytes (1024 bytes). | |
void | RemoveGhostCells () |
This method will remove any cell that is marked as ghost (has the vtkDataSetAttributes::DUPLICATECELL or the vtkDataSetAttributes::HIDDENCELL bit set). | |
int | GetScalarFieldCriticalIndex (vtkIdType pointId, vtkDataArray *scalarField) |
int | GetScalarFieldCriticalIndex (vtkIdType pointId, int fieldId) |
int | GetScalarFieldCriticalIndex (vtkIdType pointId, const char *fieldName) |
virtual vtkMTimeType | GetMeshMTime () |
Return the mesh (geometry/topology) modification time. | |
vtkMTimeType | GetMTime () override |
Get MTime which also considers its cell array MTime. | |
unsigned char | GetCell (vtkIdType cellId, const vtkIdType *&pts) |
Get a pointer to the cell, ie [npts pid1 . | |
vtkIdType | GetNumberOfCells () override |
Standard vtkDataSet interface. | |
vtkCell * | GetCell (vtkIdType cellId) override |
Standard vtkDataSet interface. | |
void | GetCell (vtkIdType cellId, vtkGenericCell *cell) override |
Standard vtkDataSet interface. | |
int | GetCellType (vtkIdType cellId) override |
Standard vtkDataSet interface. | |
void | GetCellBounds (vtkIdType cellId, double bounds[6]) override |
Standard vtkDataSet interface. | |
void | GetCellNeighbors (vtkIdType cellId, vtkIdList *ptIds, vtkIdList *cellIds) override |
Standard vtkDataSet interface. | |
virtual vtkCell * | GetCell (vtkIdType cellId)=0 |
Get cell with cellId such that: 0 <= cellId < NumberOfCells. | |
virtual vtkCell * | GetCell (int vtkNotUsed(i), int vtkNotUsed(j), int vtkNotUsed(k)) |
Standard vtkDataSet interface. | |
virtual void | GetCell (vtkIdType cellId, vtkGenericCell *cell)=0 |
Get cell with cellId such that: 0 <= cellId < NumberOfCells. | |
vtkIdType | GetNumberOfVerts () |
Return the number of primitives of a particular type held. | |
vtkIdType | GetNumberOfLines () |
Return the number of primitives of a particular type held. | |
vtkIdType | GetNumberOfPolys () |
Return the number of primitives of a particular type held. | |
vtkIdType | GetNumberOfStrips () |
Return the number of primitives of a particular type held. | |
void | GetPointCells (vtkIdType ptId, vtkIdType &ncells, vtkIdType *&cells) |
Special (efficient) operations on poly data. | |
void | GetPointCells (vtkIdType ptId, unsigned short &ncells, vtkIdType *&cells) |
Special (efficient) operations on poly data. | |
void | ReplaceCell (vtkIdType cellId, vtkIdList *ids) |
Replace the points defining cell "cellId" with a new set of points. | |
void | ReplaceCell (vtkIdType cellId, int npts, const vtkIdType pts[]) |
Replace the points defining cell "cellId" with a new set of points. | |
void | DeletePoint (vtkIdType ptId) |
Mark a point/cell as deleted from this vtkPolyData. | |
void | DeleteCell (vtkIdType cellId) |
Mark a point/cell as deleted from this vtkPolyData. | |
vtkIdType | InsertNextLinkedPoint (int numLinks) |
Add a point to the cell data structure (after cell pointers have been built). | |
vtkIdType | InsertNextLinkedPoint (double x[3], int numLinks) |
Add a point to the cell data structure (after cell pointers have been built). | |
virtual int | GetPiece () |
Get the piece and the number of pieces. | |
virtual int | GetNumberOfPieces () |
Get the piece and the number of pieces. | |
void | ShallowCopy (vtkDataObject *src) override |
Shallow and Deep copy. | |
void | DeepCopy (vtkDataObject *src) override |
Shallow and Deep copy. | |
Public Member Functions inherited from vtkPointSet | |
void | Initialize () override |
Reset to an empty state and free any memory. | |
void | CopyStructure (vtkDataSet *pd) override |
Copy the geometric structure of an input point set object. | |
vtkCell * | GetCell (vtkIdType) override |
This method always return a vtkEmptyCell , as there is no cell in a vtkPointSet . | |
void | GetCell (vtkIdType, vtkGenericCell *cell) override |
This method sets cell to be an empty cell. | |
int | GetCellType (vtkIdType) override |
This method always returns VTK_EMPTY_CELL , as there is no cell in a vtkPointSet . | |
double * | GetPoint (vtkIdType ptId) override |
See vtkDataSet for additional information. | |
vtkCellIterator * | NewCellIterator () override |
Return an iterator that traverses the cells in this data set. | |
void | BuildCellLocator () |
Build the cell locator. | |
vtkMTimeType | GetMTime () override |
Get MTime which also considers its vtkPoints MTime. | |
void | ComputeBounds () override |
Compute the (X, Y, Z) bounds of the data. | |
void | Squeeze () override |
Reclaim any unused memory. | |
unsigned long | GetActualMemorySize () override |
Return the actual size of the data in kibibytes (1024 bytes). | |
virtual vtkCell * | GetCell (vtkIdType cellId)=0 |
Get cell with cellId such that: 0 <= cellId < NumberOfCells. | |
virtual vtkCell * | GetCell (int vtkNotUsed(i), int vtkNotUsed(j), int vtkNotUsed(k)) |
virtual void | GetCell (vtkIdType cellId, vtkGenericCell *cell)=0 |
Get cell with cellId such that: 0 <= cellId < NumberOfCells. | |
virtual void | SetEditable (bool) |
Specify whether this dataset is editable after creation. | |
virtual bool | GetEditable () |
Specify whether this dataset is editable after creation. | |
virtual void | EditableOn () |
Specify whether this dataset is editable after creation. | |
virtual void | EditableOff () |
Specify whether this dataset is editable after creation. | |
vtkIdType | GetNumberOfPoints () override |
See vtkDataSet for additional information. | |
void | GetPoint (vtkIdType ptId, double x[3]) override |
See vtkDataSet for additional information. | |
vtkIdType | FindPoint (double x[3]) override |
See vtkDataSet for additional information. | |
vtkIdType | FindPoint (double x, double y, double z) |
See vtkDataSet for additional information. | |
vtkIdType | FindCell (double x[3], vtkCell *cell, vtkIdType cellId, double tol2, int &subId, double pcoords[3], double *weights) override |
See vtkDataSet for additional information. | |
vtkIdType | FindCell (double x[3], vtkCell *cell, vtkGenericCell *gencell, vtkIdType cellId, double tol2, int &subId, double pcoords[3], double *weights) override |
See vtkDataSet for additional information. | |
void | BuildPointLocator () |
Build the internal point locator . | |
void | BuildLocator () |
Build the internal point locator . | |
virtual void | SetPointLocator (vtkAbstractPointLocator *) |
Set / get an instance of vtkAbstractPointLocator which is used to support the FindPoint() and FindCell() methods. | |
virtual vtkAbstractPointLocator * | GetPointLocator () |
Set / get an instance of vtkAbstractPointLocator which is used to support the FindPoint() and FindCell() methods. | |
virtual void | SetCellLocator (vtkAbstractCellLocator *) |
Set / get an instance of vtkAbstractCellLocator which may be used when a vtkCellLocatorStrategy is used during a FindCelloperation. | |
virtual vtkAbstractCellLocator * | GetCellLocator () |
Set / get an instance of vtkAbstractCellLocator which may be used when a vtkCellLocatorStrategy is used during a FindCelloperation. | |
virtual void | SetPoints (vtkPoints *) |
Specify point array to define point coordinates. | |
virtual vtkPoints * | GetPoints () |
Specify point array to define point coordinates. | |
void | Register (vtkObjectBase *o) override |
Overwritten to handle the data/locator loop. | |
void | UnRegister (vtkObjectBase *o) override |
Overwritten to handle the data/locator loop. | |
vtkPointSet * | NewInstance () const |
Standard methdos for type information and printing. | |
Public Member Functions inherited from vtkDataSet | |
virtual vtkTypeBool | IsA (const char *type) |
Return 1 if this class is the same type of (or a subclass of) the named class. | |
vtkDataSet * | NewInstance () const |
void | PrintSelf (ostream &os, vtkIndent indent) override |
Methods invoked by print to print information about the object including superclasses. | |
virtual void | CopyStructure (vtkDataSet *ds)=0 |
Copy the geometric and topological structure of an object. | |
virtual void | CopyAttributes (vtkDataSet *ds) |
Copy the attributes associated with the specified dataset to this instance of vtkDataSet. | |
virtual vtkIdType | GetNumberOfPoints ()=0 |
Determine the number of points composing the dataset. | |
virtual vtkIdType | GetNumberOfCells ()=0 |
Determine the number of cells composing the dataset. | |
virtual double * | GetPoint (vtkIdType ptId)=0 |
Get point coordinates with ptId such that: 0 <= ptId < NumberOfPoints. | |
virtual void | GetPoint (vtkIdType id, double x[3]) |
Copy point coordinates into user provided array x[3] for specified point id. | |
virtual vtkCellIterator * | NewCellIterator () |
Return an iterator that traverses the cells in this data set. | |
virtual vtkCell * | GetCell (vtkIdType cellId)=0 |
Get cell with cellId such that: 0 <= cellId < NumberOfCells. | |
virtual vtkCell * | GetCell (int vtkNotUsed(i), int vtkNotUsed(j), int vtkNotUsed(k)) |
void | SetCellOrderAndRationalWeights (vtkIdType cellId, vtkGenericCell *cell) |
virtual void | GetCell (vtkIdType cellId, vtkGenericCell *cell)=0 |
Get cell with cellId such that: 0 <= cellId < NumberOfCells. | |
virtual void | GetCellBounds (vtkIdType cellId, double bounds[6]) |
Get the bounds of the cell with cellId such that: 0 <= cellId < NumberOfCells. | |
virtual int | GetCellType (vtkIdType cellId)=0 |
Get type of cell with cellId such that: 0 <= cellId < NumberOfCells. | |
virtual void | GetCellTypes (vtkCellTypes *types) |
Get a list of types of cells in a dataset. | |
virtual void | GetCellPoints (vtkIdType cellId, vtkIdList *ptIds)=0 |
Topological inquiry to get points defining cell. | |
virtual void | GetPointCells (vtkIdType ptId, vtkIdList *cellIds)=0 |
Topological inquiry to get cells using point. | |
virtual void | GetCellNeighbors (vtkIdType cellId, vtkIdList *ptIds, vtkIdList *cellIds) |
Topological inquiry to get all cells using list of points exclusive of cell specified (e.g., cellId). | |
virtual vtkIdType | FindCell (double x[3], vtkCell *cell, vtkIdType cellId, double tol2, int &subId, double pcoords[3], double *weights)=0 |
Locate cell based on global coordinate x and tolerance squared. | |
virtual vtkIdType | FindCell (double x[3], vtkCell *cell, vtkGenericCell *gencell, vtkIdType cellId, double tol2, int &subId, double pcoords[3], double *weights)=0 |
This is a version of the above method that can be used with multithreaded applications. | |
virtual vtkCell * | FindAndGetCell (double x[3], vtkCell *cell, vtkIdType cellId, double tol2, int &subId, double pcoords[3], double *weights) |
Locate the cell that contains a point and return the cell. | |
vtkMTimeType | GetMTime () override |
Datasets are composite objects and need to check each part for MTime THIS METHOD IS THREAD SAFE. | |
vtkCellData * | GetCellData () |
Return a pointer to this dataset's cell data. | |
vtkPointData * | GetPointData () |
Return a pointer to this dataset's point data. | |
virtual void | Squeeze () |
Reclaim any extra memory used to store data. | |
virtual void | ComputeBounds () |
Compute the data bounding box from data points. | |
double * | GetBounds () |
Return a pointer to the geometry bounding box in the form (xmin,xmax, ymin,ymax, zmin,zmax). | |
void | GetBounds (double bounds[6]) |
Return a pointer to the geometry bounding box in the form (xmin,xmax, ymin,ymax, zmin,zmax). | |
double * | GetCenter () |
Get the center of the bounding box. | |
void | GetCenter (double center[3]) |
Get the center of the bounding box. | |
double | GetLength () |
Return the length of the diagonal of the bounding box. | |
void | Initialize () override |
Restore data object to initial state. | |
virtual void | GetScalarRange (double range[2]) |
Convenience method to get the range of the first component (and only the first component) of any scalars in the data set. | |
double * | GetScalarRange () |
Convenience method to get the range of the first component (and only the first component) of any scalars in the data set. | |
virtual int | GetMaxCellSize ()=0 |
Convenience method returns largest cell size in dataset. | |
unsigned long | GetActualMemorySize () override |
Return the actual size of the data in kibibytes (1024 bytes). | |
int | GetDataObjectType () override |
Return the type of data object. | |
int | CheckAttributes () |
This method checks to see if the cell and point attributes match the geometry. | |
vtkFieldData * | GetAttributesAsFieldData (int type) override |
Returns the attributes of the data object as a vtkFieldData. | |
vtkIdType | GetNumberOfElements (int type) override |
Get the number of elements for a specific attribute type (POINT, CELL, etc.). | |
bool | HasAnyGhostCells () |
Returns 1 if there are any ghost cells 0 otherwise. | |
bool | HasAnyGhostPoints () |
Returns 1 if there are any ghost points 0 otherwise. | |
virtual bool | HasAnyBlankCells () |
Returns 1 if there are any blanking cells 0 otherwise. | |
virtual bool | HasAnyBlankPoints () |
Returns 1 if there are any blanking points 0 otherwise. | |
vtkUnsignedCharArray * | GetPointGhostArray () |
Gets the array that defines the ghost type of each point. | |
void | UpdatePointGhostArrayCache () |
Updates the pointer to the point ghost array. | |
vtkUnsignedCharArray * | AllocatePointGhostArray () |
Allocate ghost array for points. | |
vtkUnsignedCharArray * | GetCellGhostArray () |
Get the array that defines the ghost type of each cell. | |
void | UpdateCellGhostArrayCache () |
Updates the pointer to the cell ghost array. | |
vtkUnsignedCharArray * | AllocateCellGhostArray () |
Allocate ghost array for cells. | |
vtkIdType | FindPoint (double x, double y, double z) |
Locate the closest point to the global coordinate x. | |
virtual void | GenerateGhostArray (int zeroExt[6]) |
Normally called by pipeline executives or algorithms only. | |
virtual void | GenerateGhostArray (int zeroExt[6], bool cellOnly) |
Normally called by pipeline executives or algorithms only. | |
Public Member Functions inherited from vtkDataObject | |
virtual vtkTypeBool | IsA (const char *type) |
Return 1 if this class is the same type of (or a subclass of) the named class. | |
vtkDataObject * | NewInstance () const |
void | PrintSelf (ostream &os, vtkIndent indent) override |
Methods invoked by print to print information about the object including superclasses. | |
vtkMTimeType | GetMTime () override |
Data objects are composite objects and need to check each part for MTime. | |
virtual void | Initialize () |
Restore data object to initial state,. | |
void | ReleaseData () |
Release data back to system to conserve memory resource. | |
virtual int | GetDataObjectType () |
Return class name of data type. | |
vtkMTimeType | GetUpdateTime () |
Used by Threaded ports to determine if they should initiate an asynchronous update (still in development). | |
virtual unsigned long | GetActualMemorySize () |
Return the actual size of the data in kibibytes (1024 bytes). | |
virtual void | CopyInformationFromPipeline (vtkInformation *vtkNotUsed(info)) |
Copy from the pipeline information to the data object's own information. | |
virtual void | CopyInformationToPipeline (vtkInformation *vtkNotUsed(info)) |
Copy information from this data object to the pipeline information. | |
void | DataHasBeenGenerated () |
This method is called by the source when it executes to generate data. | |
virtual void | PrepareForNewData () |
make the output data ready for new data to be inserted. | |
virtual int | GetExtentType () |
The ExtentType will be left as VTK_PIECES_EXTENT for data objects such as vtkPolyData and vtkUnstructuredGrid. | |
virtual void | Crop (const int *updateExtent) |
This method crops the data object (if necessary) so that the extent matches the update extent. | |
virtual vtkDataSetAttributes * | GetAttributes (int type) |
Returns the attributes of the data object of the specified attribute type. | |
virtual vtkDataArray * | GetGhostArray (int type) |
Returns the ghost arrays of the data object of the specified atribute type. | |
virtual vtkFieldData * | GetAttributesAsFieldData (int type) |
Returns the attributes of the data object as a vtkFieldData. | |
virtual int | GetAttributeTypeForArray (vtkAbstractArray *arr) |
Retrieves the attribute type that an array came from. | |
virtual vtkIdType | GetNumberOfElements (int type) |
Get the number of elements for a specific attribute type (POINT, CELL, etc.). | |
virtual vtkInformation * | GetInformation () |
Set/Get the information object associated with this data object. | |
virtual void | SetInformation (vtkInformation *) |
Set/Get the information object associated with this data object. | |
virtual int | GetDataReleased () |
Get the flag indicating the data has been released. | |
virtual void | SetFieldData (vtkFieldData *) |
Assign or retrieve a general field data to this data object. | |
virtual vtkFieldData * | GetFieldData () |
Assign or retrieve a general field data to this data object. | |
void | GlobalReleaseDataFlagOn () |
Turn on/off flag to control whether every object releases its data after being used by a filter. | |
void | GlobalReleaseDataFlagOff () |
Turn on/off flag to control whether every object releases its data after being used by a filter. | |
Public Member Functions inherited from vtkObject | |
vtkBaseTypeMacro (vtkObject, vtkObjectBase) | |
virtual void | DebugOn () |
Turn debugging output on. | |
virtual void | DebugOff () |
Turn debugging output off. | |
bool | GetDebug () |
Get the value of the debug flag. | |
void | SetDebug (bool debugFlag) |
Set the value of the debug flag. | |
virtual void | Modified () |
Update the modification time for this object. | |
virtual vtkMTimeType | GetMTime () |
Return this object's modified time. | |
void | PrintSelf (ostream &os, vtkIndent indent) override |
Methods invoked by print to print information about the object including superclasses. | |
void | RemoveObserver (unsigned long tag) |
void | RemoveObservers (unsigned long event) |
void | RemoveObservers (const char *event) |
void | RemoveAllObservers () |
vtkTypeBool | HasObserver (unsigned long event) |
vtkTypeBool | HasObserver (const char *event) |
int | InvokeEvent (unsigned long event) |
int | InvokeEvent (const char *event) |
unsigned long | AddObserver (unsigned long event, vtkCommand *, float priority=0.0f) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
unsigned long | AddObserver (const char *event, vtkCommand *, float priority=0.0f) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
vtkCommand * | GetCommand (unsigned long tag) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
void | RemoveObserver (vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
void | RemoveObservers (unsigned long event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
void | RemoveObservers (const char *event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
vtkTypeBool | HasObserver (unsigned long event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
vtkTypeBool | HasObserver (const char *event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(), float priority=0.0f) |
Overloads to AddObserver that allow developers to add class member functions as callbacks for events. | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
Overloads to AddObserver that allow developers to add class member functions as callbacks for events. | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, bool(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
Allow user to set the AbortFlagOn() with the return value of the callback method. | |
int | InvokeEvent (unsigned long event, void *callData) |
This method invokes an event and return whether the event was aborted or not. | |
int | InvokeEvent (const char *event, void *callData) |
This method invokes an event and return whether the event was aborted or not. | |
Public Member Functions inherited from vtkObjectBase | |
const char * | GetClassName () const |
Return the class name as a string. | |
virtual vtkTypeBool | IsA (const char *name) |
Return 1 if this class is the same type of (or a subclass of) the named class. | |
virtual vtkIdType | GetNumberOfGenerationsFromBase (const char *name) |
Given the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). | |
virtual void | Delete () |
Delete a VTK object. | |
virtual void | FastDelete () |
Delete a reference to this object. | |
void | InitializeObjectBase () |
void | Print (ostream &os) |
Print an object to an ostream. | |
virtual void | Register (vtkObjectBase *o) |
Increase the reference count (mark as used by another object). | |
virtual void | UnRegister (vtkObjectBase *o) |
Decrease the reference count (release by another object). | |
int | GetReferenceCount () |
Return the current reference count of this object. | |
void | SetReferenceCount (int) |
Sets the reference count. | |
bool | GetIsInMemkind () const |
A local state flag that remembers whether this object lives in the normal or extended memory space. | |
virtual void | PrintHeader (ostream &os, vtkIndent indent) |
Methods invoked by print to print information about the object including superclasses. | |
virtual void | PrintTrailer (ostream &os, vtkIndent indent) |
Methods invoked by print to print information about the object including superclasses. | |
Static Public Member Functions | |
static vtkPolyData * | New () |
static vtkPolyData * | ExtendedNew () |
static vtkTypeBool | IsTypeOf (const char *type) |
static vtkPolyData * | SafeDownCast (vtkObjectBase *o) |
static vtkPolyData * | GetData (vtkInformation *info) |
Retrieve an instance of this class from an information object. | |
static vtkPolyData * | GetData (vtkInformationVector *v, int i=0) |
Retrieve an instance of this class from an information object. | |
Static Public Member Functions inherited from vtkPointSet | |
static vtkPointSet * | New () |
Standard instantiation method. | |
static vtkPointSet * | ExtendedNew () |
static vtkPointSet * | GetData (vtkInformation *info) |
Retrieve an instance of this class from an information object. | |
static vtkPointSet * | GetData (vtkInformationVector *v, int i=0) |
Retrieve an instance of this class from an information object. | |
static vtkTypeBool | IsTypeOf (const char *type) |
Standard methdos for type information and printing. | |
static vtkPointSet * | SafeDownCast (vtkObjectBase *o) |
Standard methdos for type information and printing. | |
Static Public Member Functions inherited from vtkDataSet | |
static vtkTypeBool | IsTypeOf (const char *type) |
static vtkDataSet * | SafeDownCast (vtkObjectBase *o) |
static vtkDataSet * | GetData (vtkInformation *info) |
Retrieve an instance of this class from an information object. | |
static vtkDataSet * | GetData (vtkInformationVector *v, int i=0) |
Retrieve an instance of this class from an information object. | |
Static Public Member Functions inherited from vtkDataObject | |
static vtkDataObject * | New () |
static vtkTypeBool | IsTypeOf (const char *type) |
static vtkDataObject * | SafeDownCast (vtkObjectBase *o) |
static vtkInformation * | GetActiveFieldInformation (vtkInformation *info, int fieldAssociation, int attributeType) |
Return the information object within the input information object's field data corresponding to the specified association (FIELD_ASSOCIATION_POINTS or FIELD_ASSOCIATION_CELLS) and attribute (SCALARS, VECTORS, NORMALS, TCOORDS, or TENSORS) | |
static vtkInformation * | GetNamedFieldInformation (vtkInformation *info, int fieldAssociation, const char *name) |
Return the information object within the input information object's field data corresponding to the specified association (FIELD_ASSOCIATION_POINTS or FIELD_ASSOCIATION_CELLS) and name. | |
static void | RemoveNamedFieldInformation (vtkInformation *info, int fieldAssociation, const char *name) |
Remove the info associated with an array. | |
static vtkInformation * | SetActiveAttribute (vtkInformation *info, int fieldAssociation, const char *attributeName, int attributeType) |
Set the named array to be the active field for the specified type (SCALARS, VECTORS, NORMALS, TCOORDS, or TENSORS) and association (FIELD_ASSOCIATION_POINTS or FIELD_ASSOCIATION_CELLS). | |
static void | SetActiveAttributeInfo (vtkInformation *info, int fieldAssociation, int attributeType, const char *name, int arrayType, int numComponents, int numTuples) |
Set the name, array type, number of components, and number of tuples within the passed information object for the active attribute of type attributeType (in specified association, FIELD_ASSOCIATION_POINTS or FIELD_ASSOCIATION_CELLS). | |
static void | SetPointDataActiveScalarInfo (vtkInformation *info, int arrayType, int numComponents) |
Convenience version of previous method for use (primarily) by the Imaging filters. | |
static const char * | GetAssociationTypeAsString (int associationType) |
Given an integer association type, this static method returns a string type for the attribute (i.e. | |
static int | GetAssociationTypeFromString (const char *associationName) |
Given a string association name, this static method returns an integer association type for the attribute (i.e. | |
static vtkInformationStringKey * | DATA_TYPE_NAME () |
static vtkInformationDataObjectKey * | DATA_OBJECT () |
static vtkInformationIntegerKey * | DATA_EXTENT_TYPE () |
static vtkInformationIntegerPointerKey * | DATA_EXTENT () |
static vtkInformationIntegerVectorKey * | ALL_PIECES_EXTENT () |
static vtkInformationIntegerKey * | DATA_PIECE_NUMBER () |
static vtkInformationIntegerKey * | DATA_NUMBER_OF_PIECES () |
static vtkInformationIntegerKey * | DATA_NUMBER_OF_GHOST_LEVELS () |
static vtkInformationDoubleKey * | DATA_TIME_STEP () |
static vtkInformationInformationVectorKey * | POINT_DATA_VECTOR () |
static vtkInformationInformationVectorKey * | CELL_DATA_VECTOR () |
static vtkInformationInformationVectorKey * | VERTEX_DATA_VECTOR () |
static vtkInformationInformationVectorKey * | EDGE_DATA_VECTOR () |
static vtkInformationIntegerKey * | FIELD_ARRAY_TYPE () |
static vtkInformationIntegerKey * | FIELD_ASSOCIATION () |
static vtkInformationIntegerKey * | FIELD_ATTRIBUTE_TYPE () |
static vtkInformationIntegerKey * | FIELD_ACTIVE_ATTRIBUTE () |
static vtkInformationIntegerKey * | FIELD_NUMBER_OF_COMPONENTS () |
static vtkInformationIntegerKey * | FIELD_NUMBER_OF_TUPLES () |
static vtkInformationIntegerKey * | FIELD_OPERATION () |
static vtkInformationDoubleVectorKey * | FIELD_RANGE () |
static vtkInformationIntegerVectorKey * | PIECE_EXTENT () |
static vtkInformationStringKey * | FIELD_NAME () |
static vtkInformationDoubleVectorKey * | ORIGIN () |
static vtkInformationDoubleVectorKey * | SPACING () |
static vtkInformationDoubleVectorKey * | DIRECTION () |
static vtkInformationDoubleVectorKey * | BOUNDING_BOX () |
static vtkInformationDataObjectKey * | SIL () |
static vtkDataObject * | GetData (vtkInformation *info) |
Retrieve an instance of this class from an information object. | |
static vtkDataObject * | GetData (vtkInformationVector *v, int i=0) |
Retrieve an instance of this class from an information object. | |
static void | SetGlobalReleaseDataFlag (int val) |
Turn on/off flag to control whether every object releases its data after being used by a filter. | |
static int | GetGlobalReleaseDataFlag () |
Turn on/off flag to control whether every object releases its data after being used by a filter. | |
Static Public Member Functions inherited from vtkObject | |
static vtkObject * | New () |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. | |
static void | BreakOnError () |
This method is called when vtkErrorMacro executes. | |
static void | SetGlobalWarningDisplay (int val) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
static void | GlobalWarningDisplayOn () |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
static void | GlobalWarningDisplayOff () |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
static int | GetGlobalWarningDisplay () |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
Static Public Member Functions inherited from vtkObjectBase | |
static vtkTypeBool | IsTypeOf (const char *name) |
Return 1 if this class type is the same type of (or a subclass of) the named class. | |
static vtkIdType | GetNumberOfGenerationsFromBaseType (const char *name) |
Given a the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). | |
static vtkObjectBase * | New () |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. | |
static void | SetMemkindDirectory (const char *directoryname) |
The name of a directory, ideally mounted -o dax, to memory map an extended memory space within. | |
static bool | GetUsingMemkind () |
A global state flag that controls whether vtkObjects are constructed in the usual way (the default) or within the extended memory space. | |
Protected Types | |
using | TaggedCellId = vtkPolyData_detail::TaggedCellId |
using | CellMap = vtkPolyData_detail::CellMap |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
Standard methdos for type information and printing. | |
vtkPolyData () | |
~vtkPolyData () override | |
vtkCellArray * | GetCellArrayInternal (TaggedCellId tag) |
Protected Member Functions inherited from vtkPointSet | |
vtkPointSet () | |
~vtkPointSet () override | |
void | ReportReferences (vtkGarbageCollector *) override |
Protected Member Functions inherited from vtkDataSet | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkDataSet () | |
~vtkDataSet () override | |
virtual void | ComputeScalarRange () |
Compute the range of the scalars and cache it into ScalarRange only if the cache became invalid (ScalarRangeComputeTime). | |
bool | IsAnyBitSet (vtkUnsignedCharArray *a, int bitFlag) |
Helper function that tests if any of the values in 'a' have bitFlag set. | |
Protected Member Functions inherited from vtkDataObject | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkDataObject () | |
~vtkDataObject () override | |
Protected Member Functions inherited from vtkObject | |
vtkObject () | |
~vtkObject () override | |
void | RegisterInternal (vtkObjectBase *, vtkTypeBool check) override |
void | UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) override |
void | InternalGrabFocus (vtkCommand *mouseEvents, vtkCommand *keypressEvents=nullptr) |
These methods allow a command to exclusively grab all events. | |
void | InternalReleaseFocus () |
These methods allow a command to exclusively grab all events. | |
Protected Member Functions inherited from vtkObjectBase | |
vtkObjectBase () | |
virtual | ~vtkObjectBase () |
virtual void | RegisterInternal (vtkObjectBase *, vtkTypeBool check) |
virtual void | UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) |
virtual void | ReportReferences (vtkGarbageCollector *) |
vtkObjectBase (const vtkObjectBase &) | |
void | operator= (const vtkObjectBase &) |
Static Protected Attributes | |
static vtkPolyDataDummyContainter | DummyContainer |
Additional Inherited Members | |
Static Protected Member Functions inherited from vtkObjectBase | |
static vtkMallocingFunction | GetCurrentMallocFunction () |
static vtkReallocingFunction | GetCurrentReallocFunction () |
static vtkFreeingFunction | GetCurrentFreeFunction () |
static vtkFreeingFunction | GetAlternateFreeFunction () |
concrete dataset represents vertices, lines, polygons, and triangle strips
vtkPolyData is a data object that is a concrete implementation of vtkDataSet. vtkPolyData represents a geometric structure consisting of vertices, lines, polygons, and/or triangle strips. Point and cell attribute values (e.g., scalars, vectors, etc.) also are represented.
The actual cell types (vtkCellType.h) supported by vtkPolyData are: vtkVertex, vtkPolyVertex, vtkLine, vtkPolyLine, vtkTriangle, vtkQuad, vtkPolygon, and vtkTriangleStrip.
One important feature of vtkPolyData objects is that special traversal and data manipulation methods are available to process data. These methods are generally more efficient than vtkDataSet methods and should be used whenever possible. For example, traversing the cells in a dataset we would use GetCell(). To traverse cells with vtkPolyData we would retrieve the cell array object representing polygons (for example using GetPolys()) and then use vtkCellArray's InitTraversal() and GetNextCell() methods.
Definition at line 194 of file vtkPolyData.h.
typedef vtkPointSet vtkPolyData::Superclass |
Definition at line 200 of file vtkPolyData.h.
|
protected |
Definition at line 787 of file vtkPolyData.h.
|
protected |
Definition at line 788 of file vtkPolyData.h.
anonymous enum |
Scalar field critical point classification (for manifold 2D meshes).
Reference: J. Milnor "Morse Theory", Princeton University Press, 1963.
Given a pointId and an attribute representing a scalar field, this member returns the index of the critical point: vtkPolyData::MINIMUM (index 0): local minimum; vtkPolyData::SADDLE (index 1): local saddle; vtkPolyData::MAXIMUM (index 2): local maximum.
Other returned values are: vtkPolyData::REGULAR_POINT: regular point (the gradient does not vanish); vtkPolyData::ERR_NON_MANIFOLD_STAR: the star of the considered vertex is not manifold (could not evaluate the index) vtkPolyData::ERR_INCORRECT_FIELD: the number of entries in the scalar field array is different form the number of vertices in the mesh. vtkPolyData::ERR_NO_SUCH_FIELD: the specified scalar field does not exist.
Enumerator | |
---|---|
ERR_NO_SUCH_FIELD | |
ERR_INCORRECT_FIELD | |
ERR_NON_MANIFOLD_STAR | |
REGULAR_POINT | |
MINIMUM | |
SADDLE | |
MAXIMUM |
Definition at line 743 of file vtkPolyData.h.
|
protected |
|
overrideprotected |
|
static |
|
static |
|
static |
|
virtual |
Standard methdos for type information and printing.
Reimplemented from vtkPointSet.
|
static |
|
protectedvirtual |
Standard methdos for type information and printing.
Reimplemented from vtkPointSet.
vtkPolyData * vtkPolyData::NewInstance | ( | ) | const |
|
overridevirtual |
Standard methdos for type information and printing.
Reimplemented from vtkPointSet.
|
inlineoverridevirtual |
Return what type of dataset this is.
Reimplemented from vtkDataSet.
Definition at line 206 of file vtkPolyData.h.
|
overridevirtual |
Copy the geometric and topological structure of an input poly data object.
Reimplemented from vtkPointSet.
|
inlineoverridevirtual |
Standard vtkDataSet interface.
Reimplemented from vtkPointSet.
Definition at line 858 of file vtkPolyData.h.
Standard vtkDataSet interface.
Reimplemented from vtkPointSet.
|
overridevirtual |
Standard vtkDataSet interface.
Reimplemented from vtkPointSet.
|
inlineoverridevirtual |
Standard vtkDataSet interface.
Reimplemented from vtkPointSet.
Definition at line 865 of file vtkPolyData.h.
|
overridevirtual |
Standard vtkDataSet interface.
Reimplemented from vtkDataSet.
|
overridevirtual |
Standard vtkDataSet interface.
Reimplemented from vtkDataSet.
void vtkPolyData::CopyCells | ( | vtkPolyData * | pd, |
vtkIdList * | idList, | ||
vtkIncrementalPointLocator * | locator = nullptr |
||
) |
Copy cells listed in idList from pd, including points, point data, and cell data.
This method assumes that point and cell data have been allocated. If you pass in a point locator, then the points won't be duplicated in the output. This requires the use of an incremental point locator.
Efficient method to obtain cells using a particular point.
Make sure that routine BuildLinks() has been called.
Reimplemented from vtkPointSet.
void vtkPolyData::ComputeCellsBounds | ( | ) |
Compute the (X, Y, Z) bounds of the data.
Note that the method only considers points that are used by cells. This is done for usability and historical reasons.
IMPORTANT
Until vtk 9.0.1, vtkPolyData::ComputeBounds() used to ignore points that do not belong to any cell. That was not consistent with other vtkPointSet subclasses and thus was error prone. See this ParaView issue https://gitlab.kitware.com/paraview/paraview/-/issues/20354 Now it defers to vtkPointSet::ComputeBounds() so vtkPolyData::GetBounds() may not return the same bounds as before. This behavior is probably the one you want when using bounds.
The previous behavior is still availble through vtkPolyData::ComputeCellsBounds() and vtkPolyData::GetCellsBounds(). This is mainly used for rendering purpose.
void vtkPolyData::GetCellsBounds | ( | double | bounds[6] | ) |
|
overridevirtual |
Recover extra allocated memory when creating data whose initial size is unknown.
Examples include using the InsertNextCell() method, or when using the CellArray::EstimateSize() method to create vertices, lines, polygons, or triangle strips.
Reimplemented from vtkPointSet.
|
overridevirtual |
Return the maximum cell size in this poly data.
Reimplemented from vtkPointSet.
Maps the cell at position cellId
inside the vtkPolyData
to its location in the corresponding cell array.
For instance, if cell cellId
is a line, then this method returns the position of this cell in the Lines
cell array.
void vtkPolyData::SetVerts | ( | vtkCellArray * | v | ) |
Set the cell array defining vertices.
vtkCellArray * vtkPolyData::GetVerts | ( | ) |
Get the cell array defining vertices.
If there are no vertices, an empty array will be returned (convenience to simplify traversal).
void vtkPolyData::SetLines | ( | vtkCellArray * | l | ) |
Set the cell array defining lines.
vtkCellArray * vtkPolyData::GetLines | ( | ) |
Get the cell array defining lines.
If there are no lines, an empty array will be returned (convenience to simplify traversal).
void vtkPolyData::SetPolys | ( | vtkCellArray * | p | ) |
Set the cell array defining polygons.
vtkCellArray * vtkPolyData::GetPolys | ( | ) |
Get the cell array defining polygons.
If there are no polygons, an empty array will be returned (convenience to simplify traversal).
void vtkPolyData::SetStrips | ( | vtkCellArray * | s | ) |
Set the cell array defining triangle strips.
vtkCellArray * vtkPolyData::GetStrips | ( | ) |
Get the cell array defining triangle strips.
If there are no triangle strips, an empty array will be returned (convenience to simplify traversal).
|
inline |
Return the number of primitives of a particular type held.
Definition at line 342 of file vtkPolyData.h.
|
inline |
Return the number of primitives of a particular type held.
Definition at line 343 of file vtkPolyData.h.
|
inline |
Return the number of primitives of a particular type held.
Definition at line 344 of file vtkPolyData.h.
|
inline |
Return the number of primitives of a particular type held.
Definition at line 345 of file vtkPolyData.h.
Preallocate memory for the internal cell arrays.
Each of the internal cell arrays (verts, lines, polys, and strips) will be resized to hold numCells cells of size maxCellSize.
Existing data is not preserved and the number of cells is set to zero.
bool vtkPolyData::AllocateEstimate | ( | vtkIdType | numVerts, |
vtkIdType | maxVertSize, | ||
vtkIdType | numLines, | ||
vtkIdType | maxLineSize, | ||
vtkIdType | numPolys, | ||
vtkIdType | maxPolySize, | ||
vtkIdType | numStrips, | ||
vtkIdType | maxStripSize | ||
) |
Preallocate memory for the internal cell arrays.
Each of the internal cell arrays (verts, lines, polys, and strips) will be resized to hold the indicated number of cells of the specified cell size.
Existing data is not preserved and the number of cells is set to zero.
Preallocate memory for the internal cell arrays.
Each of the internal cell arrays (verts, lines, polys, and strips) will be resized to hold numCells cells and connectivitySize pointIds.
Existing data is not preserved and the number of cells is set to zero.
bool vtkPolyData::AllocateExact | ( | vtkIdType | numVerts, |
vtkIdType | vertConnSize, | ||
vtkIdType | numLines, | ||
vtkIdType | lineConnSize, | ||
vtkIdType | numPolys, | ||
vtkIdType | polyConnSize, | ||
vtkIdType | numStrips, | ||
vtkIdType | stripConnSize | ||
) |
Preallocate memory for the internal cell arrays.
Each of the internal cell arrays (verts, lines, polys, and strips) will be resized to hold the indicated number of cells and the specified number of point ids (ConnSize).
Existing data is not preserved and the number of cells is set to zero.
bool vtkPolyData::AllocateCopy | ( | vtkPolyData * | pd | ) |
Preallocate memory for the internal cell arrays such that they are the same size as those in pd.
Existing data is not preserved and the number of cells is set to zero.
bool vtkPolyData::AllocateProportional | ( | vtkPolyData * | pd, |
double | ratio | ||
) |
Preallocate memory for the internal cell arrays such that they are proportional to those in pd by a factor of ratio (for instance, ratio = 2 allocates twice as many cells).
Existing data is not preserved and the number of cells is set to zero.
|
inline |
Method allocates initial storage for vertex, line, polygon, and triangle strip arrays.
Use this method before the method PolyData::InsertNextCell(). (Or, provide vertex, line, polygon, and triangle strip cell arrays). extSize is no longer used.
Definition at line 424 of file vtkPolyData.h.
|
inline |
Similar to the method above, this method allocates initial storage for vertex, line, polygon, and triangle strip arrays.
It does this more intelligently, examining the supplied inPolyData to determine whether to allocate the verts, lines, polys, and strips arrays. (These arrays are allocated only if there is data in the corresponding arrays in the inPolyData.) Caution: if the inPolyData has no verts, and after allocating with this method an PolyData::InsertNextCell() is invoked where a vertex is inserted, bad things will happen.
Definition at line 439 of file vtkPolyData.h.
Insert a cell of type VTK_VERTEX, VTK_POLY_VERTEX, VTK_LINE, VTK_POLY_LINE, VTK_TRIANGLE, VTK_QUAD, VTK_POLYGON, or VTK_TRIANGLE_STRIP.
Make sure that the PolyData::Allocate() function has been called first or that vertex, line, polygon, and triangle strip arrays have been supplied. Note: will also insert VTK_PIXEL, but converts it to VTK_QUAD.
Insert a cell of type VTK_VERTEX, VTK_POLY_VERTEX, VTK_LINE, VTK_POLY_LINE, VTK_TRIANGLE, VTK_QUAD, VTK_POLYGON, or VTK_TRIANGLE_STRIP.
Make sure that the PolyData::Allocate() function has been called first or that vertex, line, polygon, and triangle strip arrays have been supplied. Note: will also insert VTK_PIXEL, but converts it to VTK_QUAD.
void vtkPolyData::Reset | ( | ) |
Begin inserting data all over again.
Memory is not freed but otherwise objects are returned to their initial state.
void vtkPolyData::BuildCells | ( | ) |
Create data structure that allows random access of cells.
BuildCells is expensive but necessary to make use of the faster non-virtual implementations of GetCell/GetCellPoints. One may check if cells need to be built via NeedToBuilds before invoking. Cells always need to be built/re-built after low level direct modifications to verts, lines, polys or strips cell arrays.
|
inline |
Check if BuildCells is needed.
Definition at line 481 of file vtkPolyData.h.
void vtkPolyData::BuildLinks | ( | int | initialSize = 0 | ) |
Create upward links from points to cells that use each point.
Enables topologically complex queries. Normally the links array is allocated based on the number of points in the vtkPolyData. The optional initialSize parameter can be used to allocate a larger size initially.
void vtkPolyData::DeleteCells | ( | ) |
Release data structure that allows random access of the cells.
This must be done before a 2nd call to BuildLinks(). DeleteCells implicitly deletes the links as well since they are no longer valid.
void vtkPolyData::DeleteLinks | ( | ) |
Release the upward links from point to cells that use each point.
Special (efficient) operations on poly data.
Use carefully (i.e., make sure that BuildLinks() has been called).
Definition at line 844 of file vtkPolyData.h.
|
inline |
Special (efficient) operations on poly data.
Use carefully (i.e., make sure that BuildLinks() has been called).
Definition at line 850 of file vtkPolyData.h.
void vtkPolyData::GetCellEdgeNeighbors | ( | vtkIdType | cellId, |
vtkIdType | p1, | ||
vtkIdType | p2, | ||
vtkIdList * | cellIds | ||
) |
Get the neighbors at an edge.
More efficient than the general GetCellNeighbors(). Assumes links have been built (with BuildLinks()), and looks specifically for edge neighbors.
|
inline |
Get a list of point ids that define a cell.
The cell type is returned. Requires the the cells have been built with BuildCells.
The pts pointer must not be modified.
Definition at line 1000 of file vtkPolyData.h.
|
inline |
Given three vertices, determine whether it's a triangle.
Make sure BuildLinks() has been called first.
Definition at line 875 of file vtkPolyData.h.
Determine whether two points form an edge.
If they do, return non-zero. By definition PolyVertex and PolyLine have no edges since 1-dimensional edges are only found on cells 2D and higher. Edges are defined as 1-D boundary entities to cells. Make sure BuildLinks() has been called first.
Determine whether a point is used by a particular cell.
If it is, return non-zero. Make sure BuildCells() has been called first.
Definition at line 905 of file vtkPolyData.h.
Replace the points defining cell "cellId" with a new set of points.
This operator is (typically) used when links from points to cells have not been built (i.e., BuildLinks() has not been executed). Use the operator ReplaceLinkedCell() to replace a cell when cell structure has been built. Use this method only when the dataset is set as Editable.
Replace the points defining cell "cellId" with a new set of points.
This operator is (typically) used when links from points to cells have not been built (i.e., BuildLinks() has not been executed). Use the operator ReplaceLinkedCell() to replace a cell when cell structure has been built. Use this method only when the dataset is set as Editable.
|
inline |
Replace a point in the cell connectivity list with a different point.
Use this method only when the dataset is set as Editable.
Definition at line 984 of file vtkPolyData.h.
void vtkPolyData::ReverseCell | ( | vtkIdType | cellId | ) |
Reverse the order of point ids defining the cell.
Use this method only when the dataset is set as Editable.
|
inline |
Mark a point/cell as deleted from this vtkPolyData.
Use this method only when the dataset is set as Editable.
Definition at line 923 of file vtkPolyData.h.
|
inline |
Mark a point/cell as deleted from this vtkPolyData.
Use this method only when the dataset is set as Editable.
Definition at line 929 of file vtkPolyData.h.
void vtkPolyData::RemoveDeletedCells | ( | ) |
The cells marked by calls to DeleteCell are stored in the Cell Array VTK_EMPTY_CELL, but they still exist in the cell arrays.
Calling RemoveDeletedCells will traverse the cell arrays and remove/compact the cell arrays as well as any cell data thus truly removing the cells from the polydata object. Use this method only when the dataset is set as Editable.
vtkIdType vtkPolyData::InsertNextLinkedPoint | ( | int | numLinks | ) |
Add a point to the cell data structure (after cell pointers have been built).
This method adds the point and then allocates memory for the links to the cells. (To use this method, make sure points are available and BuildLinks() has been invoked.) Of the two methods below, one inserts a point coordinate and the other just makes room for cell links. Use this method only when the dataset is set as Editable.
vtkIdType vtkPolyData::InsertNextLinkedPoint | ( | double | x[3], |
int | numLinks | ||
) |
Add a point to the cell data structure (after cell pointers have been built).
This method adds the point and then allocates memory for the links to the cells. (To use this method, make sure points are available and BuildLinks() has been invoked.) Of the two methods below, one inserts a point coordinate and the other just makes room for cell links. Use this method only when the dataset is set as Editable.
Add a new cell to the cell data structure (after cell pointers have been built).
This method adds the cell and then updates the links from the points to the cells. (Memory is allocated as necessary.) Use this method only when the dataset is set as Editable.
Replace one cell with another in cell structure.
This operator updates the connectivity list and the point's link list. It does not delete references to the old cell in the point's link list. Use the operator RemoveCellReference() to delete all references from points to (old) cell. You may also want to consider using the operator ResizeCellList() if the link list is changing size. Use this method only when the dataset is set as Editable.
|
inline |
Remove all references to cell in cell structure.
This means the links from the cell's points to the cell are deleted. Memory is not reclaimed. Use the method ResizeCellList() to resize the link list from a point to its using cells. (This operator assumes BuildLinks() has been called.) Use this method only when the dataset is set as Editable.
Definition at line 935 of file vtkPolyData.h.
|
inline |
Add references to cell in cell structure.
This means the links from the cell's points to the cell are modified. Memory is not extended. Use the method ResizeCellList() to resize the link list from a point to its using cells. (This operator assumes BuildLinks() has been called.) Use this method only when the dataset is set as Editable.
Definition at line 948 of file vtkPolyData.h.
Remove a reference to a cell in a particular point's link list.
You may also consider using RemoveCellReference() to remove the references from all the cell's points to the cell. This operator does not reallocate memory; use the operator ResizeCellList() to do this if necessary. Use this method only when the dataset is set as Editable.
Add a reference to a cell in a particular point's link list.
(You may also consider using AddCellReference() to add the references from all the cell's points to the cell.) This operator does not realloc memory; use the operator ResizeCellList() to do this if necessary. Use this method only when the dataset is set as Editable.
|
inline |
Resize the list of cells using a particular point.
(This operator assumes that BuildLinks() has been called.) Use this method only when the dataset is set as Editable.
Definition at line 961 of file vtkPolyData.h.
|
overridevirtual |
|
virtual |
Get the piece and the number of pieces.
Similar to extent in 3D.
|
virtual |
Get the piece and the number of pieces.
Similar to extent in 3D.
|
virtual |
Get the ghost level.
|
overridevirtual |
Return the actual size of the data in kibibytes (1024 bytes).
This number is valid only after the pipeline has updated. The memory size returned is guaranteed to be greater than or equal to the memory required to represent the data (e.g., extra space in arrays, etc. are not included in the return value). THIS METHOD IS THREAD SAFE.
Reimplemented from vtkPointSet.
|
overridevirtual |
Shallow and Deep copy.
Reimplemented from vtkPointSet.
|
overridevirtual |
Shallow and Deep copy.
Reimplemented from vtkPointSet.
void vtkPolyData::RemoveGhostCells | ( | ) |
This method will remove any cell that is marked as ghost (has the vtkDataSetAttributes::DUPLICATECELL or the vtkDataSetAttributes::HIDDENCELL bit set).
It does not remove unused points.
|
static |
Retrieve an instance of this class from an information object.
|
static |
Retrieve an instance of this class from an information object.
int vtkPolyData::GetScalarFieldCriticalIndex | ( | vtkIdType | pointId, |
vtkDataArray * | scalarField | ||
) |
int vtkPolyData::GetScalarFieldCriticalIndex | ( | vtkIdType | pointId, |
int | fieldId | ||
) |
int vtkPolyData::GetScalarFieldCriticalIndex | ( | vtkIdType | pointId, |
const char * | fieldName | ||
) |
|
virtual |
Return the mesh (geometry/topology) modification time.
This time is different from the usual MTime which also takes into account the modification of data arrays. This function can be used to track the changes on the mesh separately from the data arrays (eg. static mesh over time with transient data).
|
overridevirtual |
Get MTime which also considers its cell array MTime.
Reimplemented from vtkPointSet.
Get a pointer to the cell, ie [npts pid1 .
. pidn]. The cell type is returned. Requires the the cells have been built with BuildCells. The pts pointer must not be modified.
pts
array returned here no longer exists in memory.
|
inlineprotected |
Definition at line 967 of file vtkPolyData.h.
Get cell with cellId such that: 0 <= cellId < NumberOfCells.
The returned vtkCell is an object owned by this instance, hence the return value must not be deleted by the caller.
Reimplemented from vtkPointSet.
|
inlinevirtual |
Standard vtkDataSet interface.
Reimplemented from vtkPointSet.
Definition at line 231 of file vtkDataSet.h.
|
virtual |
Get cell with cellId such that: 0 <= cellId < NumberOfCells.
This is a thread-safe alternative to the previous GetCell() method. THIS METHOD IS THREAD SAFE IF FIRST CALLED FROM A SINGLE THREAD AND THE DATASET IS NOT MODIFIED
Reimplemented from vtkPointSet.
|
protected |
Definition at line 793 of file vtkPolyData.h.
|
protected |
Definition at line 794 of file vtkPolyData.h.
|
protected |
Definition at line 795 of file vtkPolyData.h.
|
protected |
Definition at line 796 of file vtkPolyData.h.
|
protected |
Definition at line 797 of file vtkPolyData.h.
|
protected |
Definition at line 798 of file vtkPolyData.h.
|
protected |
Definition at line 799 of file vtkPolyData.h.
|
protected |
Definition at line 800 of file vtkPolyData.h.
|
protected |
Definition at line 801 of file vtkPolyData.h.
|
protected |
Definition at line 805 of file vtkPolyData.h.
|
protected |
Definition at line 806 of file vtkPolyData.h.
|
protected |
Definition at line 807 of file vtkPolyData.h.
|
protected |
Definition at line 808 of file vtkPolyData.h.
|
protected |
Definition at line 812 of file vtkPolyData.h.
|
protected |
Definition at line 813 of file vtkPolyData.h.
Definition at line 815 of file vtkPolyData.h.
|
staticprotected |
Definition at line 818 of file vtkPolyData.h.
|
protected |
Definition at line 821 of file vtkPolyData.h.
|
protected |
Definition at line 823 of file vtkPolyData.h.