#include <vtkDepthSortPolyData.h>
Inheritance diagram for vtkDepthSortPolyData:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual void | SetDirection (int) |
virtual int | GetDirection () |
void | SetDirectionToFrontToBack () |
void | SetDirectionToBackToFront () |
void | SetDirectionToSpecifiedVector () |
virtual void | SetCamera (vtkCamera *) |
virtual vtkCamera * | GetCamera () |
void | SetProp3D (vtkProp3D *) |
vtkProp3D * | GetProp3D () |
virtual void | SetVector (double, double, double) |
virtual void | SetVector (double[3]) |
virtual double * | GetVector () |
virtual void | GetVector (double data[3]) |
virtual void | SetOrigin (double, double, double) |
virtual void | SetOrigin (double[3]) |
virtual double * | GetOrigin () |
virtual void | GetOrigin (double data[3]) |
virtual void | SetSortScalars (int) |
virtual int | GetSortScalars () |
virtual void | SortScalarsOn () |
virtual void | SortScalarsOff () |
unsigned long | GetMTime () |
Static Public Methods | |
vtkDepthSortPolyData * | New () |
int | IsTypeOf (const char *type) |
vtkDepthSortPolyData * | SafeDownCast (vtkObject *o) |
Protected Methods | |
vtkDepthSortPolyData () | |
~vtkDepthSortPolyData () | |
vtkDepthSortPolyData (const vtkDepthSortPolyData &) | |
void | operator= (const vtkDepthSortPolyData &) |
void | Execute () |
void | ComputeProjectionVector (double vector[3], double origin[3]) |
Protected Attributes | |
int | Direction |
vtkCamera * | Camera |
vtkProp3D * | Prop3D |
vtkTransform * | Transform |
double | Vector [3] |
double | Origin [3] |
int | SortScalars |
|
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 vtkPolyDataToPolyDataFilter. |
|
Return MTime also considering the dependent objects: the camera and/or the prop3D. Reimplemented from vtkObject. |
|
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 vtkPolyDataToPolyDataFilter. |
|
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 vtkPolyDataToPolyDataFilter. |
|
Instantiate object. Reimplemented from vtkPolyDataSource. |
|
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 vtkSource. |
|
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 vtkPolyDataToPolyDataFilter. |
|
Specify a camera that is used to define a view direction along which the cells are sorted. This ivar only has effect if the direction is set to front-to-back or back-to-front, and a camera is specified. |
|
Specify the sort method for the polygonal primitives. |
|
Set/Get the sort origin. This ivar only has effect if the sort direction is set to SetDirectionToSpecifiedVector(). The sort occurs in the direction of the vector, with this point specifying the origin. |
|
Specify a transformation matrix (via the vtkProp3D::GetMatrix() method) that is used to include the effects of transformation. This ivar only has effect if the direction is set to front-to-back or back-to-front, and a camera is specified. Specifying the vtkProp3D is optional. |
|
Set/Get a flag that controls the generation of scalar values corresponding to the sort order. If enabled, the output of this filter will include scalar values that range from 0 to (ncells-1), where 0 is closest to the sort direction. |
|
Set/Get the sort direction. This ivar only has effect if the sort direction is set to SetDirectionToSpecifiedVector(). The sort occurs in the direction of the vector. |