VTK
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | Static Protected Attributes | List of all members
vtkPolyData Class Reference

concrete dataset represents vertices, lines, polygons, and triangle strips More...

#include <vtkPolyData.h>

Inheritance diagram for vtkPolyData:
[legend]
Collaboration diagram for vtkPolyData:
[legend]

Public Types

enum  {
  ERR_NO_SUCH_FIELD = -4, ERR_INCORRECT_FIELD = -3, ERR_NON_MANIFOLD_STAR = -2, REGULAR_POINT = -1,
  MINIMUM = 0, SADDLE = 1, MAXIMUM = 2
}
 Scalar field critical point classification (for manifold 2D meshes). More...
 
typedef vtkPointSet Superclass
 
- Public Types inherited from vtkPointSet
typedef vtkDataSet Superclass
 
- Public Types inherited from vtkDataSet
enum  FieldDataType { DATA_OBJECT_FIELD =0, POINT_DATA_FIELD =1, CELL_DATA_FIELD =2 }
 
typedef vtkDataObject Superclass
 
- Public Types inherited from vtkDataObject
enum  FieldAssociations {
  FIELD_ASSOCIATION_POINTS, FIELD_ASSOCIATION_CELLS, FIELD_ASSOCIATION_NONE, FIELD_ASSOCIATION_POINTS_THEN_CELLS,
  FIELD_ASSOCIATION_VERTICES, FIELD_ASSOCIATION_EDGES, FIELD_ASSOCIATION_ROWS, NUMBER_OF_ASSOCIATIONS
}
 Possible values for the FIELD_ASSOCIATION information entry. More...
 
enum  AttributeTypes {
  POINT, CELL, FIELD, POINT_THEN_CELL,
  VERTEX, EDGE, ROW, NUMBER_OF_ATTRIBUTE_TYPES
}
 Possible attribute types. More...
 
enum  FieldOperations { FIELD_OPERATION_PRESERVED, FIELD_OPERATION_REINTERPOLATED, FIELD_OPERATION_MODIFIED, FIELD_OPERATION_REMOVED }
 Possible values for the FIELD_OPERATION information entry. More...
 
typedef vtkObject Superclass
 

Public Member Functions

virtual int IsA (const char *type)
 Return 1 if this class is the same type of (or a subclass of) the named class. More...
 
vtkPolyDataNewInstance () const
 
void PrintSelf (ostream &os, vtkIndent indent) override
 Methods invoked by print to print information about the object including superclasses. More...
 
int GetDataObjectType () override
 Return what type of dataset this is. More...
 
void CopyStructure (vtkDataSet *ds) override
 Copy the geometric and topological structure of an input poly data object. More...
 
void CopyCells (vtkPolyData *pd, vtkIdList *idList, vtkPointLocator *locator=NULL)
 Copy cells listed in idList from pd, including points, point data, and cell data. More...
 
void GetCellPoints (vtkIdType cellId, vtkIdList *ptIds) override
 Copy a cells point ids into list provided. More...
 
void GetPointCells (vtkIdType ptId, vtkIdList *cellIds) override
 Efficient method to obtain cells using a particular point. More...
 
void ComputeBounds () override
 Compute the (X, Y, Z) bounds of the data. More...
 
void Squeeze () override
 Recover extra allocated memory when creating data whose initial size is unknown. More...
 
int GetMaxCellSize () override
 Return the maximum cell size in this poly data. More...
 
void SetVerts (vtkCellArray *v)
 Set the cell array defining vertices. More...
 
vtkCellArrayGetVerts ()
 Get the cell array defining vertices. More...
 
void SetLines (vtkCellArray *l)
 Set the cell array defining lines. More...
 
vtkCellArrayGetLines ()
 Get the cell array defining lines. More...
 
void SetPolys (vtkCellArray *p)
 Set the cell array defining polygons. More...
 
vtkCellArrayGetPolys ()
 Get the cell array defining polygons. More...
 
void SetStrips (vtkCellArray *s)
 Set the cell array defining triangle strips. More...
 
vtkCellArrayGetStrips ()
 Get the cell array defining triangle strips. More...
 
void Allocate (vtkIdType numCells=1000, int extSize=1000)
 Method allocates initial storage for vertex, line, polygon, and triangle strip arrays. More...
 
void Allocate (vtkPolyData *inPolyData, vtkIdType numCells=1000, int extSize=1000)
 Similar to the method above, this method allocates initial storage for vertex, line, polygon, and triangle strip arrays. More...
 
vtkIdType InsertNextCell (int type, int npts, 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. More...
 
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. More...
 
void Reset ()
 Begin inserting data all over again. More...
 
void BuildCells ()
 Create data structure that allows random access of cells. More...
 
bool NeedToBuildCells ()
 Check if BuildCells is needed. More...
 
void BuildLinks (int initialSize=0)
 Create upward links from points to cells that use each point. More...
 
void DeleteCells ()
 Release data structure that allows random access of the cells. More...
 
void DeleteLinks ()
 Release the upward links from point to cells that use each point. More...
 
void GetPointCells (vtkIdType ptId, unsigned short &ncells, vtkIdType *&cells)
 Special (efficient) operations on poly data. More...
 
void GetCellEdgeNeighbors (vtkIdType cellId, vtkIdType p1, vtkIdType p2, vtkIdList *cellIds)
 Get the neighbors at an edge. More...
 
unsigned char GetCellPoints (vtkIdType cellId, vtkIdType &npts, vtkIdType *&pts)
 Get a pointer to a list of point ids defining cell. More...
 
unsigned char GetCell (vtkIdType cellId, vtkIdType *&pts)
 Get a pointer to the cell, ie [npts pid1 . More...
 
int IsTriangle (int v1, int v2, int v3)
 Given three vertices, determine whether it's a triangle. More...
 
int IsEdge (vtkIdType p1, vtkIdType p2)
 Determine whether two points form an edge. More...
 
int IsPointUsedByCell (vtkIdType ptId, vtkIdType cellId)
 Determine whether a point is used by a particular cell. More...
 
void ReplaceCell (vtkIdType cellId, int npts, vtkIdType *pts)
 Replace the points defining cell "cellId" with a new set of points. More...
 
void ReplaceCellPoint (vtkIdType cellId, vtkIdType oldPtId, vtkIdType newPtId)
 Replace a point in the cell connectivity list with a different point. More...
 
void ReverseCell (vtkIdType cellId)
 Reverse the order of point ids defining the cell. More...
 
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. More...
 
vtkIdType InsertNextLinkedCell (int type, int npts, vtkIdType *pts)
 Add a new cell to the cell data structure (after cell pointers have been built). More...
 
void ReplaceLinkedCell (vtkIdType cellId, int npts, vtkIdType *pts)
 Replace one cell with another in cell structure. More...
 
void RemoveCellReference (vtkIdType cellId)
 Remove all references to cell in cell structure. More...
 
void AddCellReference (vtkIdType cellId)
 Add references to cell in cell structure. More...
 
void RemoveReferenceToCell (vtkIdType ptId, vtkIdType cellId)
 Remove a reference to a cell in a particular point's link list. More...
 
void AddReferenceToCell (vtkIdType ptId, vtkIdType cellId)
 Add a reference to a cell in a particular point's link list. More...
 
void ResizeCellList (vtkIdType ptId, int size)
 Resize the list of cells using a particular point. More...
 
void Initialize () override
 Restore object to initial state. More...
 
virtual int GetGhostLevel ()
 Get the ghost level. More...
 
unsigned long GetActualMemorySize () override
 Return the actual size of the data in kibibytes (1024 bytes). More...
 
void RemoveGhostCells ()
 This method will remove any cell that is marked as ghost (has the vtkDataSetAttributes::DUPLICATECELL bit set). More...
 
int GetScalarFieldCriticalIndex (vtkIdType pointId, vtkDataArray *scalarField)
 
int GetScalarFieldCriticalIndex (vtkIdType pointId, int fieldId)
 
int GetScalarFieldCriticalIndex (vtkIdType pointId, const char *fieldName)
 
vtkIdType GetNumberOfCells () override
 Standard vtkDataSet interface. More...
 
vtkCellGetCell (vtkIdType cellId) override
 Standard vtkDataSet interface. More...
 
void GetCell (vtkIdType cellId, vtkGenericCell *cell) override
 Standard vtkDataSet interface. More...
 
int GetCellType (vtkIdType cellId) override
 Standard vtkDataSet interface. More...
 
void GetCellBounds (vtkIdType cellId, double bounds[6]) override
 Standard vtkDataSet interface. More...
 
void GetCellNeighbors (vtkIdType cellId, vtkIdList *ptIds, vtkIdList *cellIds) override
 Standard vtkDataSet interface. More...
 
vtkIdType GetNumberOfVerts ()
 Return the number of primitives of a particular type held. More...
 
vtkIdType GetNumberOfLines ()
 Return the number of primitives of a particular type held. More...
 
vtkIdType GetNumberOfPolys ()
 Return the number of primitives of a particular type held. More...
 
vtkIdType GetNumberOfStrips ()
 Return the number of primitives of a particular type held. More...
 
void DeletePoint (vtkIdType ptId)
 Mark a point/cell as deleted from this vtkPolyData. More...
 
void DeleteCell (vtkIdType cellId)
 Mark a point/cell as deleted from this vtkPolyData. More...
 
vtkIdType InsertNextLinkedPoint (int numLinks)
 Add a point to the cell data structure (after cell pointers have been built). More...
 
vtkIdType InsertNextLinkedPoint (double x[3], int numLinks)
 Add a point to the cell data structure (after cell pointers have been built). More...
 
virtual int GetPiece ()
 Get the piece and the number of pieces. More...
 
virtual int GetNumberOfPieces ()
 Get the piece and the number of pieces. More...
 
void ShallowCopy (vtkDataObject *src) override
 Shallow and Deep copy. More...
 
void DeepCopy (vtkDataObject *src) override
 Shallow and Deep copy. More...
 
- Public Member Functions inherited from vtkPointSet
vtkPointSetNewInstance () const
 
doubleGetPoint (vtkIdType ptId) override
 See vtkDataSet for additional information. More...
 
vtkCellIteratorNewCellIterator () override
 Return an iterator that traverses the cells in this data set. More...
 
vtkMTimeType GetMTime () override
 Get MTime which also considers its vtkPoints MTime. More...
 
vtkIdType GetNumberOfPoints () override
 See vtkDataSet for additional information. More...
 
void GetPoint (vtkIdType ptId, double x[3]) override
 See vtkDataSet for additional information. More...
 
vtkIdType FindPoint (double x[3]) override
 See vtkDataSet for additional information. More...
 
vtkIdType FindPoint (double x, double y, double z)
 See vtkDataSet for additional information. More...
 
vtkIdType FindCell (double x[3], vtkCell *cell, vtkIdType cellId, double tol2, int &subId, double pcoords[3], double *weights) override
 See vtkDataSet for additional information. More...
 
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. More...
 
virtual void SetPoints (vtkPoints *)
 Specify point array to define point coordinates. More...
 
virtual vtkPointsGetPoints ()
 Specify point array to define point coordinates. More...
 
void Register (vtkObjectBase *o) override
 Overwritten to handle the data/locator loop. More...
 
void UnRegister (vtkObjectBase *o) override
 Overwritten to handle the data/locator loop. More...
 
- Public Member Functions inherited from vtkDataSet
vtkDataSetNewInstance () const
 
virtual void CopyAttributes (vtkDataSet *ds)
 Copy the attributes associated with the specified dataset to this instance of vtkDataSet. More...
 
virtual void GetCellTypes (vtkCellTypes *types)
 Get a list of types of cells in a dataset. More...
 
virtual vtkCellFindAndGetCell (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. More...
 
vtkCellDataGetCellData ()
 Return a pointer to this dataset's cell data. More...
 
vtkPointDataGetPointData ()
 Return a pointer to this dataset's point data. More...
 
doubleGetBounds ()
 Return a pointer to the geometry bounding box in the form (xmin,xmax, ymin,ymax, zmin,zmax). More...
 
void GetBounds (double bounds[6])
 Return a pointer to the geometry bounding box in the form (xmin,xmax, ymin,ymax, zmin,zmax). More...
 
doubleGetCenter ()
 Get the center of the bounding box. More...
 
void GetCenter (double center[3])
 Get the center of the bounding box. More...
 
double GetLength ()
 Return the length of the diagonal of the bounding box. More...
 
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. More...
 
doubleGetScalarRange ()
 Convenience method to get the range of the first component (and only the first component) of any scalars in the data set. More...
 
int CheckAttributes ()
 This method checks to see if the cell and point attributes match the geometry. More...
 
vtkFieldDataGetAttributesAsFieldData (int type) override
 Returns the attributes of the data object as a vtkFieldData. More...
 
vtkIdType GetNumberOfElements (int type) override
 Get the number of elements for a specific attribute type (POINT, CELL, etc.). More...
 
bool HasAnyGhostCells ()
 Returns 1 if there are any ghost cells 0 otherwise. More...
 
bool HasAnyGhostPoints ()
 Returns 1 if there are any ghost points 0 otherwise. More...
 
virtual bool HasAnyBlankCells ()
 Returns 1 if there are any blanking cells 0 otherwise. More...
 
virtual bool HasAnyBlankPoints ()
 Returns 1 if there are any blanking points 0 otherwise. More...
 
vtkUnsignedCharArrayGetPointGhostArray ()
 Gets the array that defines the ghost type of each point. More...
 
void UpdatePointGhostArrayCache ()
 Updates the pointer to the point ghost array. More...
 
vtkUnsignedCharArrayAllocatePointGhostArray ()
 Allocate ghost array for points. More...
 
vtkUnsignedCharArrayGetCellGhostArray ()
 Get the array that defines the ghost type of each cell. More...
 
void UpdateCellGhostArrayCache ()
 Updates the pointer to the cell ghost array. More...
 
vtkUnsignedCharArrayAllocateCellGhostArray ()
 Allocate ghost array for cells. More...
 
vtkIdType FindPoint (double x, double y, double z)
 Locate the closest point to the global coordinate x. More...
 
virtual void GenerateGhostArray (int zeroExt[6])
 Normally called by pipeline executives or algoritms only. More...
 
virtual void GenerateGhostArray (int zeroExt[6], bool cellOnly)
 Normally called by pipeline executives or algoritms only. More...
 
- Public Member Functions inherited from vtkDataObject
vtkDataObjectNewInstance () const
 
void ReleaseData ()
 Release data back to system to conserve memory resource. More...
 
vtkMTimeType GetUpdateTime ()
 Used by Threaded ports to determine if they should initiate an asynchronous update (still in development). More...
 
virtual void CopyInformationFromPipeline (vtkInformation *vtkNotUsed(info))
 Copy from the pipeline information to the data object's own information. More...
 
virtual void CopyInformationToPipeline (vtkInformation *vtkNotUsed(info))
 Copy information from this data object to the pipeline information. More...
 
void DataHasBeenGenerated ()
 This method is called by the source when it executes to generate data. More...
 
virtual void PrepareForNewData ()
 make the output data ready for new data to be inserted. More...
 
virtual int GetExtentType ()
 The ExtentType will be left as VTK_PIECES_EXTENT for data objects such as vtkPolyData and vtkUnstructuredGrid. More...
 
virtual void Crop (const int *updateExtent)
 This method crops the data object (if necessary) so that the extent matches the update extent. More...
 
virtual vtkDataSetAttributesGetAttributes (int type)
 Returns the attributes of the data object of the specified attribute type. More...
 
virtual int GetAttributeTypeForArray (vtkAbstractArray *arr)
 Retrieves the attribute type that an array came from. More...
 
virtual vtkInformationGetInformation ()
 Set/Get the information object associated with this data object. More...
 
virtual void SetInformation (vtkInformation *)
 Set/Get the information object associated with this data object. More...
 
virtual int GetDataReleased ()
 Get the flag indicating the data has been released. More...
 
virtual void SetFieldData (vtkFieldData *)
 Assign or retrieve a general field data to this data object. More...
 
virtual vtkFieldDataGetFieldData ()
 Assign or retrieve a general field data to this data object. More...
 
void GlobalReleaseDataFlagOn ()
 Turn on/off flag to control whether every object releases its data after being used by a filter. More...
 
void GlobalReleaseDataFlagOff ()
 Turn on/off flag to control whether every object releases its data after being used by a filter. More...
 
- Public Member Functions inherited from vtkObject
 vtkBaseTypeMacro (vtkObject, vtkObjectBase)
 
virtual void DebugOn ()
 Turn debugging output on. More...
 
virtual void DebugOff ()
 Turn debugging output off. More...
 
bool GetDebug ()
 Get the value of the debug flag. More...
 
void SetDebug (bool debugFlag)
 Set the value of the debug flag. More...
 
virtual void Modified ()
 Update the modification time for this object. More...
 
void RemoveObserver (unsigned long tag)
 
void RemoveObservers (unsigned long event)
 
void RemoveObservers (const char *event)
 
void RemoveAllObservers ()
 
int HasObserver (unsigned long event)
 
int 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. More...
 
unsigned long AddObserver (const char *event, vtkCommand *, float priority=0.0f)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
vtkCommandGetCommand (unsigned long tag)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
void RemoveObserver (vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
void RemoveObservers (unsigned long event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
void RemoveObservers (const char *event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
int HasObserver (unsigned long event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
int HasObserver (const char *event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
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. More...
 
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. More...
 
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. More...
 
int InvokeEvent (unsigned long event, void *callData)
 This method invokes an event and return whether the event was aborted or not. More...
 
int InvokeEvent (const char *event, void *callData)
 This method invokes an event and return whether the event was aborted or not. More...
 
- Public Member Functions inherited from vtkObjectBase
const char * GetClassName () const
 Return the class name as a string. More...
 
virtual void Delete ()
 Delete a VTK object. More...
 
virtual void FastDelete ()
 Delete a reference to this object. More...
 
void InitializeObjectBase ()
 
void Print (ostream &os)
 Print an object to an ostream. More...
 
int GetReferenceCount ()
 Return the current reference count of this object. More...
 
void SetReferenceCount (int)
 Sets the reference count. More...
 
void PrintRevisions (ostream &)
 Legacy. More...
 
virtual void PrintHeader (ostream &os, vtkIndent indent)
 Methods invoked by print to print information about the object including superclasses. More...
 
virtual void PrintTrailer (ostream &os, vtkIndent indent)
 Methods invoked by print to print information about the object including superclasses. More...
 

Static Public Member Functions

static vtkPolyDataNew ()
 
static int IsTypeOf (const char *type)
 
static vtkPolyDataSafeDownCast (vtkObjectBase *o)
 
static vtkPolyDataGetData (vtkInformation *info)
 Retrieve an instance of this class from an information object. More...
 
static vtkPolyDataGetData (vtkInformationVector *v, int i=0)
 Retrieve an instance of this class from an information object. More...
 
- Static Public Member Functions inherited from vtkPointSet
static int IsTypeOf (const char *type)
 
static vtkPointSetSafeDownCast (vtkObjectBase *o)
 
static vtkPointSetGetData (vtkInformation *info)
 Retrieve an instance of this class from an information object. More...
 
static vtkPointSetGetData (vtkInformationVector *v, int i=0)
 Retrieve an instance of this class from an information object. More...
 
- Static Public Member Functions inherited from vtkDataSet
static int IsTypeOf (const char *type)
 
static vtkDataSetSafeDownCast (vtkObjectBase *o)
 
static vtkDataSetGetData (vtkInformation *info)
 Retrieve an instance of this class from an information object. More...
 
static vtkDataSetGetData (vtkInformationVector *v, int i=0)
 Retrieve an instance of this class from an information object. More...
 
- Static Public Member Functions inherited from vtkDataObject
static vtkDataObjectNew ()
 
static int IsTypeOf (const char *type)
 
static vtkDataObjectSafeDownCast (vtkObjectBase *o)
 
static vtkInformationGetActiveFieldInformation (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) More...
 
static vtkInformationGetNamedFieldInformation (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. More...
 
static void RemoveNamedFieldInformation (vtkInformation *info, int fieldAssociation, const char *name)
 Remove the info associated with an array. More...
 
static vtkInformationSetActiveAttribute (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). More...
 
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). More...
 
static void SetPointDataActiveScalarInfo (vtkInformation *info, int arrayType, int numComponents)
 Convenience version of previous method for use (primarily) by the Imaging filters. More...
 
static const char * GetAssociationTypeAsString (int associationType)
 Given an integer association type, this static method returns a string type for the attribute (i.e. More...
 
static int GetAssociationTypeFromString (const char *associationType)
 Given an integer association type, this static method returns a string type for the attribute (i.e. More...
 
static vtkInformationStringKeyDATA_TYPE_NAME ()
 
static vtkInformationDataObjectKeyDATA_OBJECT ()
 
static vtkInformationIntegerKeyDATA_EXTENT_TYPE ()
 
static vtkInformationIntegerPointerKeyDATA_EXTENT ()
 
static vtkInformationIntegerVectorKeyALL_PIECES_EXTENT ()
 
static vtkInformationIntegerKeyDATA_PIECE_NUMBER ()
 
static vtkInformationIntegerKeyDATA_NUMBER_OF_PIECES ()
 
static vtkInformationIntegerKeyDATA_NUMBER_OF_GHOST_LEVELS ()
 
static vtkInformationDoubleKeyDATA_TIME_STEP ()
 
static vtkInformationInformationVectorKeyPOINT_DATA_VECTOR ()
 
static vtkInformationInformationVectorKeyCELL_DATA_VECTOR ()
 
static vtkInformationInformationVectorKeyVERTEX_DATA_VECTOR ()
 
static vtkInformationInformationVectorKeyEDGE_DATA_VECTOR ()
 
static vtkInformationIntegerKeyFIELD_ARRAY_TYPE ()
 
static vtkInformationIntegerKeyFIELD_ASSOCIATION ()
 
static vtkInformationIntegerKeyFIELD_ATTRIBUTE_TYPE ()
 
static vtkInformationIntegerKeyFIELD_ACTIVE_ATTRIBUTE ()
 
static vtkInformationIntegerKeyFIELD_NUMBER_OF_COMPONENTS ()
 
static vtkInformationIntegerKeyFIELD_NUMBER_OF_TUPLES ()
 
static vtkInformationIntegerKeyFIELD_OPERATION ()
 
static vtkInformationDoubleVectorKeyFIELD_RANGE ()
 
static vtkInformationIntegerVectorKeyPIECE_EXTENT ()
 
static vtkInformationStringKeyFIELD_NAME ()
 
static vtkInformationDoubleVectorKeyORIGIN ()
 
static vtkInformationDoubleVectorKeySPACING ()
 
static vtkInformationDoubleVectorKeyBOUNDING_BOX ()
 
static vtkInformationDataObjectKeySIL ()
 
static vtkDataObjectGetData (vtkInformation *info)
 Retrieve an instance of this class from an information object. More...
 
static vtkDataObjectGetData (vtkInformationVector *v, int i=0)
 Retrieve an instance of this class from an information object. More...
 
static void SetGlobalReleaseDataFlag (int val)
 Turn on/off flag to control whether every object releases its data after being used by a filter. More...
 
static int GetGlobalReleaseDataFlag ()
 Turn on/off flag to control whether every object releases its data after being used by a filter. More...
 
- Static Public Member Functions inherited from vtkObject
static vtkObjectNew ()
 Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More...
 
static void BreakOnError ()
 This method is called when vtkErrorMacro executes. More...
 
static void SetGlobalWarningDisplay (int val)
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
static void GlobalWarningDisplayOn ()
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
static void GlobalWarningDisplayOff ()
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
static int GetGlobalWarningDisplay ()
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
- 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. More...
 
static vtkObjectBaseNew ()
 Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More...
 

Protected Member Functions

virtual vtkObjectBaseNewInstanceInternal () const
 
 vtkPolyData ()
 
 ~vtkPolyData () override
 
- Protected Member Functions inherited from vtkPointSet
 vtkPointSet ()
 
 ~vtkPointSet () override
 
void ReportReferences (vtkGarbageCollector *) override
 
- Protected Member Functions inherited from vtkDataSet
 vtkDataSet ()
 
 ~vtkDataSet () override
 
virtual void ComputeScalarRange ()
 Compute the range of the scalars and cache it into ScalarRange only if the cache became invalid (ScalarRangeComputeTime). More...
 
bool IsAnyBitSet (vtkUnsignedCharArray *a, int bitFlag)
 Helper function that tests if any of the values in 'a' have bitFlag set. More...
 
- Protected Member Functions inherited from vtkDataObject
 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=NULL)
 These methods allow a command to exclusively grab all events. More...
 
void InternalReleaseFocus ()
 These methods allow a command to exclusively grab all events. More...
 
- Protected Member Functions inherited from vtkObjectBase
 vtkObjectBase ()
 
virtual ~vtkObjectBase ()
 
virtual void CollectRevisions (ostream &)
 
 vtkObjectBase (const vtkObjectBase &)
 
void operator= (const vtkObjectBase &)
 

Protected Attributes

vtkVertexVertex
 
vtkPolyVertexPolyVertex
 
vtkLineLine
 
vtkPolyLinePolyLine
 
vtkTriangleTriangle
 
vtkQuadQuad
 
vtkPolygonPolygon
 
vtkTriangleStripTriangleStrip
 
vtkEmptyCellEmptyCell
 
vtkCellArrayVerts
 
vtkCellArrayLines
 
vtkCellArrayPolys
 
vtkCellArrayStrips
 
vtkCellTypesCells
 
vtkCellLinksLinks
 
- Protected Attributes inherited from vtkPointSet
vtkPointsPoints
 
vtkPointLocatorLocator
 
- Protected Attributes inherited from vtkDataSet
vtkCellDataCellData
 
vtkPointDataPointData
 
vtkCallbackCommandDataObserver
 
vtkTimeStamp ComputeTime
 
double Bounds [6]
 
double Center [3]
 
double ScalarRange [2]
 
vtkTimeStamp ScalarRangeComputeTime
 
vtkUnsignedCharArrayPointGhostArray
 These arrays pointers are caches used to avoid a string comparision (when getting ghost arrays using GetArray(name)) More...
 
vtkUnsignedCharArrayCellGhostArray
 These arrays pointers are caches used to avoid a string comparision (when getting ghost arrays using GetArray(name)) More...
 
bool PointGhostArrayCached
 These arrays pointers are caches used to avoid a string comparision (when getting ghost arrays using GetArray(name)) More...
 
bool CellGhostArrayCached
 These arrays pointers are caches used to avoid a string comparision (when getting ghost arrays using GetArray(name)) More...
 
- Protected Attributes inherited from vtkDataObject
vtkFieldDataFieldData
 
int DataReleased
 
vtkTimeStamp UpdateTime
 
vtkInformationInformation
 
- Protected Attributes inherited from vtkObject
bool Debug
 
vtkTimeStamp MTime
 
vtkSubjectHelper * SubjectHelper
 
- Protected Attributes inherited from vtkObjectBase
vtkAtomicInt32 ReferenceCount
 
vtkWeakPointerBase ** WeakPointers
 

Static Protected Attributes

static vtkPolyDataDummyContainter DummyContainer
 

Detailed Description

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.

Warning
Because vtkPolyData is implemented with four separate instances of vtkCellArray to represent 0D vertices, 1D lines, 2D polygons, and 2D triangle strips, it is possible to create vtkPolyData instances that consist of a mixture of cell types. Because of the design of the class, there are certain limitations on how mixed cell types are inserted into the vtkPolyData, and in turn the order in which they are processed and rendered. To preserve the consistency of cell ids, and to insure that cells with cell data are rendered properly, users must insert mixed cells in the order of vertices (vtkVertex and vtkPolyVertex), lines (vtkLine and vtkPolyLine), polygons (vtkTriangle, vtkQuad, vtkPolygon), and triangle strips (vtkTriangleStrip).
Some filters when processing vtkPolyData with mixed cell types may process the cells in differing ways. Some will convert one type into another (e.g., vtkTriangleStrip into vtkTriangles) or expect a certain type (vtkDecimatePro expects triangles or triangle strips; vtkTubeFilter expects lines). Read the documentation for each filter carefully to understand how each part of vtkPolyData is processed.
Examples:
vtkPolyData (Examples)
Tests:
vtkPolyData (Tests)

Definition at line 85 of file vtkPolyData.h.

Member Typedef Documentation

Definition at line 90 of file vtkPolyData.h.

Member Enumeration Documentation

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 513 of file vtkPolyData.h.

Constructor & Destructor Documentation

vtkPolyData::vtkPolyData ( )
protected
vtkPolyData::~vtkPolyData ( )
overrideprotected

Member Function Documentation

static vtkPolyData* vtkPolyData::New ( )
static
static int vtkPolyData::IsTypeOf ( const char *  type)
static
virtual int vtkPolyData::IsA ( const char *  name)
virtual

Return 1 if this class is the same type of (or a subclass of) the named class.

Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.

Reimplemented from vtkPointSet.

static vtkPolyData* vtkPolyData::SafeDownCast ( vtkObjectBase o)
static
virtual vtkObjectBase* vtkPolyData::NewInstanceInternal ( ) const
protectedvirtual

Reimplemented from vtkPointSet.

vtkPolyData* vtkPolyData::NewInstance ( ) const
void vtkPolyData::PrintSelf ( ostream &  os,
vtkIndent  indent 
)
overridevirtual

Methods invoked by print to print information about the object including superclasses.

Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.

Reimplemented from vtkPointSet.

int vtkPolyData::GetDataObjectType ( )
inlineoverridevirtual

Return what type of dataset this is.

Reimplemented from vtkDataSet.

Definition at line 96 of file vtkPolyData.h.

void vtkPolyData::CopyStructure ( vtkDataSet ds)
overridevirtual

Copy the geometric and topological structure of an input poly data object.

Reimplemented from vtkPointSet.

vtkIdType vtkPolyData::GetNumberOfCells ( )
overridevirtual

Standard vtkDataSet interface.

Implements vtkDataSet.

vtkCell* vtkPolyData::GetCell ( vtkIdType  cellId)
overridevirtual

Standard vtkDataSet interface.

Implements vtkDataSet.

void vtkPolyData::GetCell ( vtkIdType  cellId,
vtkGenericCell cell 
)
overridevirtual

Standard vtkDataSet interface.

Implements vtkDataSet.

int vtkPolyData::GetCellType ( vtkIdType  cellId)
overridevirtual

Standard vtkDataSet interface.

Implements vtkDataSet.

void vtkPolyData::GetCellBounds ( vtkIdType  cellId,
double  bounds[6] 
)
overridevirtual

Standard vtkDataSet interface.

Reimplemented from vtkDataSet.

void vtkPolyData::GetCellNeighbors ( vtkIdType  cellId,
vtkIdList ptIds,
vtkIdList cellIds 
)
overridevirtual

Standard vtkDataSet interface.

Reimplemented from vtkDataSet.

void vtkPolyData::CopyCells ( vtkPolyData pd,
vtkIdList idList,
vtkPointLocator locator = NULL 
)

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.

void vtkPolyData::GetCellPoints ( vtkIdType  cellId,
vtkIdList ptIds 
)
overridevirtual

Copy a cells point ids into list provided.

(Less efficient.)

Implements vtkDataSet.

void vtkPolyData::GetPointCells ( vtkIdType  ptId,
vtkIdList cellIds 
)
overridevirtual

Efficient method to obtain cells using a particular point.

Make sure that routine BuildLinks() has been called.

Implements vtkDataSet.

void vtkPolyData::ComputeBounds ( )
overridevirtual

Compute the (X, Y, Z) bounds of the data.

Reimplemented from vtkPointSet.

void vtkPolyData::Squeeze ( )
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.

int vtkPolyData::GetMaxCellSize ( )
overridevirtual

Return the maximum cell size in this poly data.

Implements vtkDataSet.

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).

vtkIdType vtkPolyData::GetNumberOfVerts ( )

Return the number of primitives of a particular type held.

vtkIdType vtkPolyData::GetNumberOfLines ( )

Return the number of primitives of a particular type held.

vtkIdType vtkPolyData::GetNumberOfPolys ( )

Return the number of primitives of a particular type held.

vtkIdType vtkPolyData::GetNumberOfStrips ( )

Return the number of primitives of a particular type held.

void vtkPolyData::Allocate ( vtkIdType  numCells = 1000,
int  extSize = 1000 
)

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.) The array capacity is doubled when the inserting a cell exceeds the current capacity. extSize is no longer used.

void vtkPolyData::Allocate ( vtkPolyData inPolyData,
vtkIdType  numCells = 1000,
int  extSize = 1000 
)

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.

vtkIdType vtkPolyData::InsertNextCell ( int  type,
int  npts,
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.

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.

vtkIdType vtkPolyData::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.

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.

bool vtkPolyData::NeedToBuildCells ( )
inline

Check if BuildCells is needed.

Definition at line 267 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.

void vtkPolyData::GetPointCells ( vtkIdType  ptId,
unsigned short &  ncells,
vtkIdType *&  cells 
)
inline

Special (efficient) operations on poly data.

Use carefully.

Definition at line 575 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.

unsigned char vtkPolyData::GetCellPoints ( vtkIdType  cellId,
vtkIdType npts,
vtkIdType *&  pts 
)
inline

Get a pointer to a list of point ids defining cell.

More efficient because pointer points directly to cell array internals and this is not a virtual call. However, this requires that cells have been built (with BuildCells()). The cell type is returned.

Definition at line 682 of file vtkPolyData.h.

unsigned char vtkPolyData::GetCell ( vtkIdType  cellId,
vtkIdType *&  pts 
)
inline

Get a pointer to the cell, ie [npts pid1 .

. pidn]. More efficient because pointer points directly to cell array internals and this is not a virtual call. However, this requires that cells have been built (with BuildCells()). The cell type is returned.

Definition at line 716 of file vtkPolyData.h.

int vtkPolyData::IsTriangle ( int  v1,
int  v2,
int  v3 
)
inline

Given three vertices, determine whether it's a triangle.

Make sure BuildLinks() has been called first.

Definition at line 582 of file vtkPolyData.h.

int vtkPolyData::IsEdge ( vtkIdType  p1,
vtkIdType  p2 
)

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.

int vtkPolyData::IsPointUsedByCell ( vtkIdType  ptId,
vtkIdType  cellId 
)
inline

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 612 of file vtkPolyData.h.

void vtkPolyData::ReplaceCell ( vtkIdType  cellId,
int  npts,
vtkIdType pts 
)

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.

void vtkPolyData::ReplaceCellPoint ( vtkIdType  cellId,
vtkIdType  oldPtId,
vtkIdType  newPtId 
)
inline

Replace a point in the cell connectivity list with a different point.

Definition at line 665 of file vtkPolyData.h.

void vtkPolyData::ReverseCell ( vtkIdType  cellId)

Reverse the order of point ids defining the cell.

void vtkPolyData::DeletePoint ( vtkIdType  ptId)
inline

Mark a point/cell as deleted from this vtkPolyData.

Definition at line 628 of file vtkPolyData.h.

void vtkPolyData::DeleteCell ( vtkIdType  cellId)
inline

Mark a point/cell as deleted from this vtkPolyData.

Definition at line 633 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.

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.

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.

vtkIdType vtkPolyData::InsertNextLinkedCell ( int  type,
int  npts,
vtkIdType pts 
)

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.)

void vtkPolyData::ReplaceLinkedCell ( vtkIdType  cellId,
int  npts,
vtkIdType pts 
)

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.

void vtkPolyData::RemoveCellReference ( vtkIdType  cellId)
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.)

Definition at line 638 of file vtkPolyData.h.

void vtkPolyData::AddCellReference ( vtkIdType  cellId)
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.)

Definition at line 649 of file vtkPolyData.h.

void vtkPolyData::RemoveReferenceToCell ( vtkIdType  ptId,
vtkIdType  cellId 
)

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.

void vtkPolyData::AddReferenceToCell ( vtkIdType  ptId,
vtkIdType  cellId 
)

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.

void vtkPolyData::ResizeCellList ( vtkIdType  ptId,
int  size 
)
inline

Resize the list of cells using a particular point.

(This operator assumes that BuildLinks() has been called.)

Definition at line 660 of file vtkPolyData.h.

void vtkPolyData::Initialize ( )
overridevirtual

Restore object to initial state.

Release memory back to system.

Reimplemented from vtkPointSet.

virtual int vtkPolyData::GetPiece ( )
virtual

Get the piece and the number of pieces.

Similar to extent in 3D.

virtual int vtkPolyData::GetNumberOfPieces ( )
virtual

Get the piece and the number of pieces.

Similar to extent in 3D.

virtual int vtkPolyData::GetGhostLevel ( )
virtual

Get the ghost level.

unsigned long vtkPolyData::GetActualMemorySize ( )
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.

void vtkPolyData::ShallowCopy ( vtkDataObject src)
overridevirtual

Shallow and Deep copy.

Reimplemented from vtkPointSet.

void vtkPolyData::DeepCopy ( vtkDataObject src)
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 bit set).

It does not remove unused points.

static vtkPolyData* vtkPolyData::GetData ( vtkInformation info)
static

Retrieve an instance of this class from an information object.

static vtkPolyData* vtkPolyData::GetData ( vtkInformationVector v,
int  i = 0 
)
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 
)

Member Data Documentation

vtkVertex* vtkPolyData::Vertex
protected

Definition at line 534 of file vtkPolyData.h.

vtkPolyVertex* vtkPolyData::PolyVertex
protected

Definition at line 535 of file vtkPolyData.h.

vtkLine* vtkPolyData::Line
protected

Definition at line 536 of file vtkPolyData.h.

vtkPolyLine* vtkPolyData::PolyLine
protected

Definition at line 537 of file vtkPolyData.h.

vtkTriangle* vtkPolyData::Triangle
protected

Definition at line 538 of file vtkPolyData.h.

vtkQuad* vtkPolyData::Quad
protected

Definition at line 539 of file vtkPolyData.h.

vtkPolygon* vtkPolyData::Polygon
protected

Definition at line 540 of file vtkPolyData.h.

vtkTriangleStrip* vtkPolyData::TriangleStrip
protected

Definition at line 541 of file vtkPolyData.h.

vtkEmptyCell* vtkPolyData::EmptyCell
protected

Definition at line 542 of file vtkPolyData.h.

vtkCellArray* vtkPolyData::Verts
protected

Definition at line 546 of file vtkPolyData.h.

vtkCellArray* vtkPolyData::Lines
protected

Definition at line 547 of file vtkPolyData.h.

vtkCellArray* vtkPolyData::Polys
protected

Definition at line 548 of file vtkPolyData.h.

vtkCellArray* vtkPolyData::Strips
protected

Definition at line 549 of file vtkPolyData.h.

vtkPolyDataDummyContainter vtkPolyData::DummyContainer
staticprotected

Definition at line 552 of file vtkPolyData.h.

vtkCellTypes* vtkPolyData::Cells
protected

Definition at line 556 of file vtkPolyData.h.

vtkCellLinks* vtkPolyData::Links
protected

Definition at line 557 of file vtkPolyData.h.


The documentation for this class was generated from the following file: