VTK
|
Transform that uses the SMP framework. More...
#include <vtkSMPTransform.h>
Public Types | |
typedef vtkTransform | Superclass |
Public Member Functions | |
virtual int | IsA (const char *type) |
vtkSMPTransform * | NewInstance () const |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | TransformPoints (vtkPoints *inPts, vtkPoints *outPts) |
virtual void | TransformNormals (vtkDataArray *inNms, vtkDataArray *outNms) |
virtual void | TransformVectors (vtkDataArray *inVrs, vtkDataArray *outVrs) |
void | TransformPointsNormalsVectors (vtkPoints *inPts, vtkPoints *outPts, vtkDataArray *inNms, vtkDataArray *outNms, vtkDataArray *inVrs, vtkDataArray *outVrs) |
Static Public Member Functions | |
static vtkSMPTransform * | New () |
static int | IsTypeOf (const char *type) |
static vtkSMPTransform * | SafeDownCast (vtkObjectBase *o) |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkSMPTransform () | |
~vtkSMPTransform () |
Transform that uses the SMP framework.
Just like its parent, vtkTransform, vtkSMPTransform calculates and manages transforms. Its main difference is that it performs various transform operations over a set of points in parallel using the SMP framework.
Definition at line 35 of file vtkSMPTransform.h.
Reimplemented from vtkTransform.
Definition at line 39 of file vtkSMPTransform.h.
vtkSMPTransform::vtkSMPTransform | ( | ) | [inline, protected] |
Definition at line 66 of file vtkSMPTransform.h.
vtkSMPTransform::~vtkSMPTransform | ( | ) | [inline, protected] |
Definition at line 67 of file vtkSMPTransform.h.
static vtkSMPTransform* vtkSMPTransform::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkTransform.
static int vtkSMPTransform::IsTypeOf | ( | const char * | name | ) | [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 vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkTransform.
virtual int vtkSMPTransform::IsA | ( | const char * | name | ) | [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 vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkTransform.
static vtkSMPTransform* vtkSMPTransform::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkTransform.
virtual vtkObjectBase* vtkSMPTransform::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkTransform.
vtkSMPTransform* vtkSMPTransform::NewInstance | ( | ) | const |
Reimplemented from vtkTransform.
void vtkSMPTransform::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 vtkTransform.
void vtkSMPTransform::TransformPoints | ( | vtkPoints * | inPts, |
vtkPoints * | outPts | ||
) | [virtual] |
Apply the transformation to a series of points, and append the results to outPts.
Reimplemented from vtkLinearTransform.
virtual void vtkSMPTransform::TransformNormals | ( | vtkDataArray * | inNms, |
vtkDataArray * | outNms | ||
) | [virtual] |
Apply the transformation to a series of normals, and append the results to outNms.
Reimplemented from vtkLinearTransform.
virtual void vtkSMPTransform::TransformVectors | ( | vtkDataArray * | inVrs, |
vtkDataArray * | outVrs | ||
) | [virtual] |
Apply the transformation to a series of vectors, and append the results to outVrs.
Reimplemented from vtkLinearTransform.
void vtkSMPTransform::TransformPointsNormalsVectors | ( | vtkPoints * | inPts, |
vtkPoints * | outPts, | ||
vtkDataArray * | inNms, | ||
vtkDataArray * | outNms, | ||
vtkDataArray * | inVrs, | ||
vtkDataArray * | outVrs | ||
) | [virtual] |
Apply the transformation to a combination of points, normals and vectors.
Reimplemented from vtkLinearTransform.