#include <vtkExplicitCell.h>
Inheritance diagram for vtkExplicitCell:
vtkExplicitCell is an abstract superclass for cells that cannot be represented implicitly. An implicit representation requires only a cell type and connectivity list (e.g., triangle). Explicit cells require information beyond this; e.g., a NURBS surface or cells that require explicit face/edge descriptions. Most cells in VTK are implicitly represented.
Definition at line 48 of file vtkExplicitCell.h.
Public Types | |
typedef vtkNonLinearCell | Superclass |
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual int | IsExplicitCell () |
virtual void | SetCellId (vtkIdType) |
virtual vtkIdType | GetCellId () |
virtual void | SetDataSet (vtkDataSet *) |
virtual vtkDataSet * | GetDataSet () |
Static Public Methods | |
int | IsTypeOf (const char *type) |
vtkExplicitCell * | SafeDownCast (vtkObject *o) |
Protected Methods | |
vtkExplicitCell () | |
~vtkExplicitCell () | |
Protected Attributes | |
vtkIdType | CellId |
vtkDataSet * | DataSet |
|
Reimplemented from vtkNonLinearCell. Definition at line 51 of file vtkExplicitCell.h. |
|
|
|
Definition at line 80 of file vtkExplicitCell.h. |
|
Reimplemented from vtkNonLinearCell. |
|
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 vtkNonLinearCell. |
|
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 vtkNonLinearCell. |
|
Reimplemented from vtkNonLinearCell. |
|
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 vtkNonLinearCell. |
|
Explicit cells require additional representational information beyond the usual cell type and connectivity list information. Most cells in VTK are implicit cells. The vtkCell::IsImplicitCell() virtual function is overloaded to reflect this requirement. Reimplemented from vtkCell. Definition at line 58 of file vtkExplicitCell.h. |
|
Set/Get the cell id. This is necessary for explicit cells because they often need to keep extra information (typically contained in the cell data of a point set). This information might be things like knot points/weights, boundaries, etc. |
|
Set/Get the cell id. This is necessary for explicit cells because they often need to keep extra information (typically contained in the cell data of a point set). This information might be things like knot points/weights, boundaries, etc. |
|
Set/Get the mesh that owns this cell. This is necessary for explicit cells because they often need to keep extra information (typically contained in the cell data of a point set). This information might be things like knot points/weights, boundaries, etc. |
|
Set/Get the mesh that owns this cell. This is necessary for explicit cells because they often need to keep extra information (typically contained in the cell data of a point set). This information might be things like knot points/weights, boundaries, etc. |
|
Definition at line 82 of file vtkExplicitCell.h. |
|
Definition at line 83 of file vtkExplicitCell.h. |