#include <vtkPolyDataMapper.h>
Inheritance diagram for vtkPolyDataMapper:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual void | Render (vtkRenderer *, vtkActor *) |
void | SetInput (vtkPolyData *in) |
vtkPolyData * | GetInput () |
void | Update () |
virtual void | SetPiece (int) |
virtual int | GetPiece () |
virtual void | SetNumberOfPieces (int) |
virtual int | GetNumberOfPieces () |
virtual void | SetGhostLevel (int) |
virtual int | GetGhostLevel () |
Static Public Methods | |
vtkPolyDataMapper * | New () |
int | IsTypeOf (const char *type) |
vtkPolyDataMapper * | SafeDownCast (vtkObject *o) |
Protected Methods | |
vtkPolyDataMapper () | |
~vtkPolyDataMapper () | |
vtkPolyDataMapper (const vtkPolyDataMapper &) | |
void | operator= (const vtkPolyDataMapper &) |
Protected Attributes | |
int | Piece |
int | NumberOfPieces |
int | GhostLevel |
vtkPolyDataMapper is a class that maps polygonal data (i.e., vtkPolyData) to graphics primitives. vtkPolyDataMapper serves as a superclass for device-specific poly data mappers, that actually do the mapping to the rendering/graphics hardware/software.
|
Return the class name as a string. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkMapper. Reimplemented in vtkMesaPolyDataMapper. |
|
Get the input as a vtkDataSet. This method is overridden in the specialized mapper classes to return more specific data types. Reimplemented from vtkMapper. |
|
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 vtkMapper. Reimplemented in vtkMesaPolyDataMapper. |
|
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 vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkMapper. Reimplemented in vtkMesaPolyDataMapper. |
|
Instantiate object with no start, end, or progress methods. Reimplemented from vtkProcessObject. Reimplemented in vtkMesaPolyDataMapper. |
|
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 vtkMapper. |
|
Implement required Render method. Just a dummy routine here. Implements vtkMapper. Reimplemented in vtkMesaPolyDataMapper. |
|
Will cast the supplied object to vtkObject* is this is a safe operation (i.e., a safe downcast); otherwise NULL is returned. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkMapper. Reimplemented in vtkMesaPolyDataMapper. |
|
Set the number of ghost cells to return. |
|
Specify the input data to map. |
|
If you want only a part of the data, specify by setting the piece. |
|
Update that sets the update piece first. Reimplemented from vtkMapper. |