Section: Visualization Toolkit Filtering Classes
To create an instance of class vtkExplicitCell, simply invoke its constructor as follows
obj = vtkExplicitCell
obj
is an instance of the vtkExplicitCell class.
string = obj.GetClassName ()
int = obj.IsA (string name)
vtkExplicitCell = obj.NewInstance ()
vtkExplicitCell = obj.SafeDownCast (vtkObject o)
int = obj.IsExplicitCell ()
- 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.
obj.SetCellId (vtkIdType )
- 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.
vtkIdType = obj.GetCellId ()
- 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.
obj.SetDataSet (vtkDataSet )
- 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.
vtkDataSet = obj.GetDataSet ()
- 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.