Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members File Members Related Pages
vtkUnstructuredGrid Class Reference
#include <vtkUnstructuredGrid.h>
Inheritance diagram for vtkUnstructuredGrid:
[legend]Collaboration diagram for vtkUnstructuredGrid:
[legend]List of all members.
Detailed Description
dataset represents arbitrary combinations of all possible cell types
- Date:
-
2002/12/26 18:24:22
- Revision:
-
1.90
vtkUnstructuredGrid is a data object that is a concrete implementation of vtkDataSet. vtkUnstructuredGrid represents any combinations of any cell types. This includes 0D (e.g., points), 1D (e.g., lines, polylines), 2D (e.g., triangles, polygons), and 3D (e.g., hexahedron, tetrahedron).
- Created by:
-
- CVS contributions (if > 5%):
-
- Schroeder, Will (39%)
- Law, Charles (23%)
- Lee, Jeff (15%)
- Martin, Ken (5%)
- CVS logs (CVSweb):
-
- .
h
(/Common/vtkUnstructuredGrid.h)
- .
cxx
(/Common/vtkUnstructuredGrid.cxx)
- Examples:
-
vtkUnstructuredGrid (Examples)
- Tests:
-
vtkUnstructuredGrid (Tests)
Definition at line 78 of file vtkUnstructuredGrid.h.
|
Public Types |
typedef vtkPointSet | Superclass |
Public Methods |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
int | GetCellType (vtkIdType cellId) |
vtkUnsignedCharArray * | GetCellTypesArray () |
vtkIntArray * | GetCellLocationsArray () |
void | Squeeze () |
void | Initialize () |
int | GetMaxCellSize () |
void | BuildLinks () |
vtkCellLinks * | GetCellLinks () |
virtual void | GetCellPoints (vtkIdType cellId, vtkIdType &npts, vtkIdType *&pts) |
void | ReplaceCell (vtkIdType cellId, int npts, vtkIdType *pts) |
int | InsertNextLinkedCell (int type, int npts, vtkIdType *pts) |
void | RemoveReferenceToCell (vtkIdType ptId, vtkIdType cellId) |
void | AddReferenceToCell (vtkIdType ptId, vtkIdType cellId) |
void | ResizeCellList (vtkIdType ptId, int size) |
unsigned long | GetActualMemorySize () |
void | GetListOfUniqueCellTypes (vtkUnsignedCharArray *uniqueTypes) |
void | GetIdsOfCellsOfType (int type, vtkIntArray *array) |
int | IsHomogeneous () |
void | RemoveGhostCells (int level) |
|
int | GetDataObjectType () |
virtual void | Allocate (vtkIdType numCells=1000, int extSize=1000) |
int | InsertNextCell (int type, int npts, vtkIdType *pts) |
int | InsertNextCell (int type, vtkIdList *ptIds) |
void | Reset () |
void | SetCells (int *types, vtkCellArray *cells) |
void | SetCells (vtkUnsignedCharArray *cellTypes, vtkIntArray *cellLocations, vtkCellArray *cells) |
vtkCellArray * | GetCells () |
virtual void | CopyStructure (vtkDataSet *ds) |
vtkIdType | GetNumberOfCells () |
virtual vtkCell * | GetCell (vtkIdType cellId) |
virtual void | GetCell (vtkIdType cellId, vtkGenericCell *cell) |
virtual void | GetCellBounds (vtkIdType cellId, float bounds[6]) |
virtual void | GetCellPoints (vtkIdType cellId, vtkIdList *ptIds) |
void | GetPointCells (vtkIdType ptId, vtkIdList *cellIds) |
|
virtual void | GetCellNeighbors (vtkIdType cellId, vtkIdList *ptIds, vtkIdList *cellIds) |
|
void | SetUpdateExtent (int piece, int numPieces, int ghostLevel) |
void | SetUpdateExtent (int piece, int numPieces) |
void | GetUpdateExtent (int &piece, int &numPieces, int &ghostLevel) |
|
virtual int * | GetUpdateExtent () |
virtual void | GetUpdateExtent (int &, int &, int &, int &, int &, int &) |
virtual void | GetUpdateExtent (int[6]) |
|
void | SetUpdateExtent (int x1, int x2, int y1, int y2, int z1, int z2) |
void | SetUpdateExtent (int ext[6]) |
|
virtual int | GetPiece () |
virtual int | GetNumberOfPieces () |
|
virtual int | GetGhostLevel () |
|
virtual void | ShallowCopy (vtkDataObject *src) |
virtual void | DeepCopy (vtkDataObject *src) |
Static Public Methods |
vtkUnstructuredGrid * | New () |
int | IsTypeOf (const char *type) |
vtkUnstructuredGrid * | SafeDownCast (vtkObject *o) |
Protected Methods |
| vtkUnstructuredGrid () |
| ~vtkUnstructuredGrid () |
Protected Attributes |
vtkVertex * | Vertex |
vtkPolyVertex * | PolyVertex |
vtkLine * | Line |
vtkPolyLine * | PolyLine |
vtkTriangle * | Triangle |
vtkTriangleStrip * | TriangleStrip |
vtkPixel * | Pixel |
vtkQuad * | Quad |
vtkPolygon * | Polygon |
vtkTetra * | Tetra |
vtkVoxel * | Voxel |
vtkHexahedron * | Hexahedron |
vtkWedge * | Wedge |
vtkPyramid * | Pyramid |
vtkQuadraticEdge * | QuadraticEdge |
vtkQuadraticTriangle * | QuadraticTriangle |
vtkQuadraticQuad * | QuadraticQuad |
vtkQuadraticTetra * | QuadraticTetra |
vtkQuadraticHexahedron * | QuadraticHexahedron |
vtkConvexPointSet * | ConvexPointSet |
vtkCellArray * | Connectivity |
vtkCellLinks * | Links |
vtkUnsignedCharArray * | Types |
vtkIntArray * | Locations |
Member Typedef Documentation
Constructor & Destructor Documentation
vtkUnstructuredGrid::vtkUnstructuredGrid |
( |
|
) |
[protected] |
|
vtkUnstructuredGrid::~vtkUnstructuredGrid |
( |
|
) |
[protected] |
|
Member Function Documentation
vtkUnstructuredGrid* vtkUnstructuredGrid::New |
( |
|
) |
[static] |
|
|
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkDataObject. |
virtual const char* vtkUnstructuredGrid::GetClassName |
( |
|
) |
[virtual] |
|
int vtkUnstructuredGrid::IsTypeOf |
( |
const char * |
type |
) |
[static] |
|
|
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkPointSet. |
virtual int vtkUnstructuredGrid::IsA |
( |
const char * |
type |
) |
[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 vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkPointSet. |
vtkUnstructuredGrid* vtkUnstructuredGrid::SafeDownCast |
( |
vtkObject * |
o |
) |
[static] |
|
void vtkUnstructuredGrid::PrintSelf |
( |
ostream & |
os, |
|
|
vtkIndent |
indent |
|
) |
[virtual] |
|
|
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 vtkUnstructuredGrid::GetDataObjectType |
( |
|
) |
[inline, virtual] |
|
virtual void vtkUnstructuredGrid::Allocate |
( |
vtkIdType |
numCells = 1000, |
|
|
int |
extSize = 1000 |
|
) |
[virtual] |
|
int vtkUnstructuredGrid::InsertNextCell |
( |
int |
type, |
|
|
int |
npts, |
|
|
vtkIdType * |
pts |
|
) |
|
|
int vtkUnstructuredGrid::InsertNextCell |
( |
int |
type, |
|
|
vtkIdList * |
ptIds |
|
) |
|
|
void vtkUnstructuredGrid::Reset |
( |
|
) |
|
|
void vtkUnstructuredGrid::SetCells |
( |
int * |
types, |
|
|
vtkCellArray * |
cells |
|
) |
|
|
virtual void vtkUnstructuredGrid::CopyStructure |
( |
vtkDataSet * |
ds |
) |
[virtual] |
|
vtkIdType vtkUnstructuredGrid::GetNumberOfCells |
( |
|
) |
[virtual] |
|
virtual void vtkUnstructuredGrid::GetCellBounds |
( |
vtkIdType |
cellId, |
|
|
float |
bounds[6] |
|
) |
[virtual] |
|
virtual void vtkUnstructuredGrid::GetCellPoints |
( |
vtkIdType |
cellId, |
|
|
vtkIdList * |
ptIds |
|
) |
[virtual] |
|
int vtkUnstructuredGrid::GetCellType |
( |
vtkIdType |
cellId |
) |
[virtual] |
|
|
Get type of cell with cellId such that: 0 <= cellId < NumberOfCells. THIS METHOD IS THREAD SAFE IF FIRST CALLED FROM A SINGLE THREAD AND THE DATASET IS NOT MODIFIED
Implements vtkDataSet. |
vtkIntArray* vtkUnstructuredGrid::GetCellLocationsArray |
( |
|
) |
[inline] |
|
void vtkUnstructuredGrid::Squeeze |
( |
|
) |
[virtual] |
|
|
Reclaim any unused memory.
Reimplemented from vtkPointSet. |
void vtkUnstructuredGrid::Initialize |
( |
|
) |
[virtual] |
|
|
Reset to an empty state and free any memory.
Reimplemented from vtkPointSet. |
int vtkUnstructuredGrid::GetMaxCellSize |
( |
|
) |
[virtual] |
|
|
Convenience method returns largest cell size in dataset. This is generally used to allocate memory for supporting data structures. THIS METHOD IS THREAD SAFE
Implements vtkDataSet. |
void vtkUnstructuredGrid::BuildLinks |
( |
|
) |
|
|
vtkCellLinks* vtkUnstructuredGrid::GetCellLinks |
( |
|
) |
[inline] |
|
int vtkUnstructuredGrid::InsertNextLinkedCell |
( |
int |
type, |
|
|
int |
npts, |
|
|
vtkIdType * |
pts |
|
) |
|
|
void vtkUnstructuredGrid::ResizeCellList |
( |
vtkIdType |
ptId, |
|
|
int |
size |
|
) |
|
|
|
Topological inquiry to get all cells using list of points exclusive of cell specified (e.g., cellId). THIS METHOD IS THREAD SAFE IF FIRST CALLED FROM A SINGLE THREAD AND THE DATASET IS NOT MODIFIED
Reimplemented from vtkDataSet. |
void vtkUnstructuredGrid::SetUpdateExtent |
( |
int |
piece, |
|
|
int |
numPieces, |
|
|
int |
ghostLevel |
|
) |
|
|
|
For streaming. User/next filter specifies which piece the want updated. The source of this poly data has to return exactly this piece. |
void vtkUnstructuredGrid::SetUpdateExtent |
( |
int |
piece, |
|
|
int |
numPieces |
|
) |
[inline] |
|
void vtkUnstructuredGrid::GetUpdateExtent |
( |
int & |
piece, |
|
|
int & |
numPieces, |
|
|
int & |
ghostLevel |
|
) |
|
|
|
For streaming. User/next filter specifies which piece the want updated. The source of this poly data has to return exactly this piece. |
virtual int* vtkUnstructuredGrid::GetUpdateExtent |
( |
|
) |
[virtual] |
|
|
We need this here to keep from hiding superclass method
Reimplemented from vtkDataObject. |
virtual void vtkUnstructuredGrid::GetUpdateExtent |
( |
int & |
, |
|
|
int & |
, |
|
|
int & |
, |
|
|
int & |
, |
|
|
int & |
, |
|
|
int & |
|
|
) |
[virtual] |
|
|
We need this here to keep from hiding superclass method
Reimplemented from vtkDataObject. |
virtual void vtkUnstructuredGrid::GetUpdateExtent |
( |
int |
[6] |
) |
[virtual] |
|
|
We need this here to keep from hiding superclass method
Reimplemented from vtkDataObject. |
void vtkUnstructuredGrid::SetUpdateExtent |
( |
int |
x1, |
|
|
int |
x2, |
|
|
int |
y1, |
|
|
int |
y2, |
|
|
int |
z1, |
|
|
int |
z2 |
|
) |
[inline, virtual] |
|
void vtkUnstructuredGrid::SetUpdateExtent |
( |
int |
ext[6] |
) |
[inline, virtual] |
|
virtual int vtkUnstructuredGrid::GetPiece |
( |
|
) |
[virtual] |
|
|
Set / Get the piece and the number of pieces. Similar to extent in 3D. |
virtual int vtkUnstructuredGrid::GetNumberOfPieces |
( |
|
) |
[virtual] |
|
|
Set / Get the piece and the number of pieces. Similar to extent in 3D. |
virtual int vtkUnstructuredGrid::GetGhostLevel |
( |
|
) |
[virtual] |
|
|
Set / Get the ghost level. |
unsigned long vtkUnstructuredGrid::GetActualMemorySize |
( |
|
) |
[virtual] |
|
|
Return the actual size of the data in kilobytes. 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. |
virtual void vtkUnstructuredGrid::ShallowCopy |
( |
vtkDataObject * |
src |
) |
[virtual] |
|
virtual void vtkUnstructuredGrid::DeepCopy |
( |
vtkDataObject * |
src |
) |
[virtual] |
|
|
Fill vtkUnsignedCharArray container with list of unique cell types. This method traverses all cells and, for each unique cell type it encounters, inserts the type into the container. |
void vtkUnstructuredGrid::GetIdsOfCellsOfType |
( |
int |
type, |
|
|
vtkIntArray * |
array |
|
) |
|
|
|
Fill vtkIntArray container with list of cell Ids. This method traverses all cells and, for a particular cell type, inserts the cell Id into the container. |
int vtkUnstructuredGrid::IsHomogeneous |
( |
|
) |
|
|
|
Traverse cells and determine if cells are all of the same type. |
void vtkUnstructuredGrid::RemoveGhostCells |
( |
int |
level |
) |
|
|
|
This method will remove any cell that has a ghost level array value greater or equal to level. |
Member Data Documentation
vtkVertex* vtkUnstructuredGrid::Vertex [protected]
|
|
vtkLine* vtkUnstructuredGrid::Line [protected]
|
|
vtkPixel* vtkUnstructuredGrid::Pixel [protected]
|
|
vtkQuad* vtkUnstructuredGrid::Quad [protected]
|
|
vtkPolygon* vtkUnstructuredGrid::Polygon [protected]
|
|
vtkTetra* vtkUnstructuredGrid::Tetra [protected]
|
|
vtkVoxel* vtkUnstructuredGrid::Voxel [protected]
|
|
vtkWedge* vtkUnstructuredGrid::Wedge [protected]
|
|
vtkPyramid* vtkUnstructuredGrid::Pyramid [protected]
|
|
vtkIntArray* vtkUnstructuredGrid::Locations [protected]
|
|
The documentation for this class was generated from the following file: