VTK
9.1.0
|
object represents upward pointers from points to list of cells using each point (template implementation) More...
#include <vtkStaticCellLinksTemplate.h>
Public Member Functions | |
void | Initialize () |
Make sure any previously created links are cleaned up. | |
void | BuildLinks (vtkDataSet *ds) |
Build the link list array for a general dataset. | |
void | BuildLinks (vtkPolyData *pd) |
Build the link list array for vtkPolyData. | |
void | BuildLinks (vtkUnstructuredGrid *ugrid) |
Build the link list array for vtkUnstructuredGrid. | |
void | BuildLinks (vtkExplicitStructuredGrid *esgrid) |
Build the link list array for vtkExplicitStructuredGrid. | |
void | SerialBuildLinks (const vtkIdType numPts, const vtkIdType numCells, vtkCellArray *cellArray) |
Specialized methods for building links from cell array. | |
void | ThreadedBuildLinks (const vtkIdType numPts, const vtkIdType numCells, vtkCellArray *cellArray) |
bool | MatchesCell (vtkIdType npts, const vtkIdType *pts) |
Indicate whether the point ids provided defines at least one cell, or a portion of a cell. | |
TIds * | GetCells (vtkIdType ptId) |
Return a list of cell ids using the point specified by ptId. | |
void | GetCells (vtkIdType npts, const vtkIdType *pts, vtkIdList *cells) |
Given point ids that define a cell, find the cells that contains all of these point ids. | |
vtkStaticCellLinksTemplate () | |
Instantiate and destructor methods. | |
~vtkStaticCellLinksTemplate () | |
Instantiate and destructor methods. | |
TIds | GetNumberOfCells (vtkIdType ptId) |
Get the number of cells using the point specified by ptId. | |
vtkIdType | GetNcells (vtkIdType ptId) |
Get the number of cells using the point specified by ptId. | |
unsigned long | GetActualMemorySize () |
Support vtkAbstractCellLinks API. | |
void | DeepCopy (vtkAbstractCellLinks *src) |
Support vtkAbstractCellLinks API. | |
void | SelectCells (vtkIdType minMaxDegree[2], unsigned char *cellSelection) |
Support vtkAbstractCellLinks API. | |
void | SetSequentialProcessing (vtkTypeBool seq) |
Control whether to thread or serial process. | |
vtkTypeBool | GetSequentialProcessing () |
Control whether to thread or serial process. | |
Protected Attributes | |
TIds | LinksSize |
TIds | NumPts |
TIds | NumCells |
TIds * | Links |
TIds * | Offsets |
int | Type |
vtkTypeBool | SequentialProcessing |
object represents upward pointers from points to list of cells using each point (template implementation)
vtkStaticCellLinksTemplate is a supplemental object to vtkCellArray and vtkCellTypes, enabling access to the list of cells using each point. vtkStaticCellLinksTemplate is an array of links, each link represents a list of cell ids using a particular point. The information provided by this object can be used to determine neighbors (e.g., face neighbors, edge neighbors)and construct other local topological information. This class is a faster implementation of vtkCellLinks. However, it cannot be incrementally constructed; it is meant to be constructed once (statically) and must be rebuilt if the cells change.
This is a templated implementation for vtkStaticCellLinks. The reason for the templating is to gain performance and reduce memory by using smaller integral types to represent ids. For example, if the maximum id can be represented by an int (as compared to a vtkIdType), it is possible to reduce memory requirements by half and increase performance. This templated class can be used directly; alternatively the non-templated class vtkStaticCellLinks can be used for convenience; although it uses vtkIdType and so will lose some speed and memory advantages.
Definition at line 57 of file vtkStaticCellLinksTemplate.h.
vtkStaticCellLinksTemplate< TIds >::vtkStaticCellLinksTemplate | ( | ) |
Instantiate and destructor methods.
vtkStaticCellLinksTemplate< TIds >::~vtkStaticCellLinksTemplate | ( | ) |
Instantiate and destructor methods.
void vtkStaticCellLinksTemplate< TIds >::Initialize | ( | ) |
Make sure any previously created links are cleaned up.
void vtkStaticCellLinksTemplate< TIds >::BuildLinks | ( | vtkDataSet * | ds | ) |
Build the link list array for a general dataset.
Slower than the specialized methods that follow.
void vtkStaticCellLinksTemplate< TIds >::BuildLinks | ( | vtkPolyData * | pd | ) |
Build the link list array for vtkPolyData.
void vtkStaticCellLinksTemplate< TIds >::BuildLinks | ( | vtkUnstructuredGrid * | ugrid | ) |
Build the link list array for vtkUnstructuredGrid.
void vtkStaticCellLinksTemplate< TIds >::BuildLinks | ( | vtkExplicitStructuredGrid * | esgrid | ) |
Build the link list array for vtkExplicitStructuredGrid.
void vtkStaticCellLinksTemplate< TIds >::SerialBuildLinks | ( | const vtkIdType | numPts, |
const vtkIdType | numCells, | ||
vtkCellArray * | cellArray | ||
) |
Specialized methods for building links from cell array.
void vtkStaticCellLinksTemplate< TIds >::ThreadedBuildLinks | ( | const vtkIdType | numPts, |
const vtkIdType | numCells, | ||
vtkCellArray * | cellArray | ||
) |
|
inline |
Get the number of cells using the point specified by ptId.
Definition at line 105 of file vtkStaticCellLinksTemplate.h.
|
inline |
Get the number of cells using the point specified by ptId.
Definition at line 106 of file vtkStaticCellLinksTemplate.h.
bool vtkStaticCellLinksTemplate< TIds >::MatchesCell | ( | vtkIdType | npts, |
const vtkIdType * | pts | ||
) |
Indicate whether the point ids provided defines at least one cell, or a portion of a cell.
|
inline |
Return a list of cell ids using the point specified by ptId.
Definition at line 118 of file vtkStaticCellLinksTemplate.h.
void vtkStaticCellLinksTemplate< TIds >::GetCells | ( | vtkIdType | npts, |
const vtkIdType * | pts, | ||
vtkIdList * | cells | ||
) |
Given point ids that define a cell, find the cells that contains all of these point ids.
The set of linked cells is returned in cells.
unsigned long vtkStaticCellLinksTemplate< TIds >::GetActualMemorySize | ( | ) |
Support vtkAbstractCellLinks API.
void vtkStaticCellLinksTemplate< TIds >::DeepCopy | ( | vtkAbstractCellLinks * | src | ) |
Support vtkAbstractCellLinks API.
void vtkStaticCellLinksTemplate< TIds >::SelectCells | ( | vtkIdType | minMaxDegree[2], |
unsigned char * | cellSelection | ||
) |
Support vtkAbstractCellLinks API.
|
inline |
Control whether to thread or serial process.
Definition at line 139 of file vtkStaticCellLinksTemplate.h.
|
inline |
Control whether to thread or serial process.
Definition at line 140 of file vtkStaticCellLinksTemplate.h.
|
protected |
Definition at line 145 of file vtkStaticCellLinksTemplate.h.
|
protected |
Definition at line 146 of file vtkStaticCellLinksTemplate.h.
|
protected |
Definition at line 147 of file vtkStaticCellLinksTemplate.h.
|
protected |
Definition at line 150 of file vtkStaticCellLinksTemplate.h.
|
protected |
Definition at line 151 of file vtkStaticCellLinksTemplate.h.
|
protected |
Definition at line 154 of file vtkStaticCellLinksTemplate.h.
|
protected |
Definition at line 155 of file vtkStaticCellLinksTemplate.h.