|
| virtual int | IsA (const char *type) |
| |
| vtkIdentityTransform * | NewInstance () const |
| |
| void | PrintSelf (ostream &os, vtkIndent indent) |
| |
| void | TransformPoints (vtkPoints *inPts, vtkPoints *outPts) |
| |
| void | TransformNormals (vtkDataArray *inNms, vtkDataArray *outNms) |
| |
| void | TransformVectors (vtkDataArray *inVrs, vtkDataArray *outVrs) |
| |
| void | Inverse () |
| |
| vtkAbstractTransform * | MakeTransform () |
| |
|
| void | TransformPointsNormalsVectors (vtkPoints *inPts, vtkPoints *outPts, vtkDataArray *inNms, vtkDataArray *outNms, vtkDataArray *inVrs, vtkDataArray *outVrs) |
| |
|
| void | InternalTransformPoint (const float in[3], float out[3]) |
| |
| void | InternalTransformPoint (const double in[3], double out[3]) |
| |
|
| void | InternalTransformNormal (const float in[3], float out[3]) |
| |
| void | InternalTransformNormal (const double in[3], double out[3]) |
| |
|
| void | InternalTransformVector (const float in[3], float out[3]) |
| |
| void | InternalTransformVector (const double in[3], double out[3]) |
| |
|
| void | InternalTransformDerivative (const float in[3], float out[3], float derivative[3][3]) |
| |
| void | InternalTransformDerivative (const double in[3], double out[3], double derivative[3][3]) |
| |
| vtkLinearTransform * | NewInstance () const |
| |
| void | PrintSelf (ostream &os, vtkIndent indent) |
| |
| void | TransformPoints (vtkPoints *inPts, vtkPoints *outPts) |
| |
| void | TransformNormal (const float in[3], float out[3]) |
| |
| void | TransformNormal (const double in[3], double out[3]) |
| |
| double * | TransformNormal (double x, double y, double z) |
| |
| double * | TransformNormal (const double normal[3]) |
| |
| float * | TransformFloatNormal (float x, float y, float z) |
| |
| float * | TransformFloatNormal (const float normal[3]) |
| |
| double * | TransformDoubleNormal (double x, double y, double z) |
| |
| double * | TransformDoubleNormal (const double normal[3]) |
| |
| double * | TransformVector (double x, double y, double z) |
| |
| double * | TransformVector (const double normal[3]) |
| |
| void | TransformVector (const float in[3], float out[3]) |
| |
| void | TransformVector (const double in[3], double out[3]) |
| |
| float * | TransformFloatVector (float x, float y, float z) |
| |
| float * | TransformFloatVector (const float vec[3]) |
| |
| double * | TransformDoubleVector (double x, double y, double z) |
| |
| double * | TransformDoubleVector (const double vec[3]) |
| |
| void | TransformPointsNormalsVectors (vtkPoints *inPts, vtkPoints *outPts, vtkDataArray *inNms, vtkDataArray *outNms, vtkDataArray *inVrs, vtkDataArray *outVrs) |
| |
| vtkLinearTransform * | GetLinearInverse () |
| |
| void | InternalTransformPoint (const float in[3], float out[3]) |
| |
| void | InternalTransformPoint (const double in[3], double out[3]) |
| |
| void | InternalTransformDerivative (const float in[3], float out[3], float derivative[3][3]) |
| |
| void | InternalTransformDerivative (const double in[3], double out[3], double derivative[3][3]) |
| |
| vtkHomogeneousTransform * | NewInstance () const |
| |
| void | PrintSelf (ostream &os, vtkIndent indent) |
| |
| void | GetMatrix (vtkMatrix4x4 *m) |
| |
| vtkMatrix4x4 * | GetMatrix () |
| |
| vtkHomogeneousTransform * | GetHomogeneousInverse () |
| |
| vtkAbstractTransform * | NewInstance () const |
| |
| void | PrintSelf (ostream &os, vtkIndent indent) |
| |
| double * | TransformNormalAtPoint (const double point[3], const double normal[3]) |
| |
| double * | TransformVectorAtPoint (const double point[3], const double vector[3]) |
| |
| vtkAbstractTransform * | GetInverse () |
| |
| void | SetInverse (vtkAbstractTransform *transform) |
| |
| void | DeepCopy (vtkAbstractTransform *) |
| |
| void | Update () |
| |
| virtual int | CircuitCheck (vtkAbstractTransform *transform) |
| |
| unsigned long | GetMTime () |
| |
| virtual void | UnRegister (vtkObjectBase *O) |
| |
| void | TransformPoint (const float in[3], float out[3]) |
| |
| void | TransformPoint (const double in[3], double out[3]) |
| |
| double * | TransformPoint (double x, double y, double z) |
| |
| double * | TransformPoint (const double point[3]) |
| |
| float * | TransformFloatPoint (float x, float y, float z) |
| |
| float * | TransformFloatPoint (const float point[3]) |
| |
| double * | TransformDoublePoint (double x, double y, double z) |
| |
| double * | TransformDoublePoint (const double point[3]) |
| |
| void | TransformNormalAtPoint (const float point[3], const float in[3], float out[3]) |
| |
| void | TransformNormalAtPoint (const double point[3], const double in[3], double out[3]) |
| |
| double * | TransformDoubleNormalAtPoint (const double point[3], const double normal[3]) |
| |
| float * | TransformFloatNormalAtPoint (const float point[3], const float normal[3]) |
| |
| void | TransformVectorAtPoint (const float point[3], const float in[3], float out[3]) |
| |
| void | TransformVectorAtPoint (const double point[3], const double in[3], double out[3]) |
| |
| double * | TransformDoubleVectorAtPoint (const double point[3], const double vector[3]) |
| |
| float * | TransformFloatVectorAtPoint (const float point[3], const float vector[3]) |
| |
a transform that doesn't do anything
vtkIdentityTransform is a transformation which will simply pass coordinate data unchanged. All other transform types can also do this, however, the vtkIdentityTransform does so with much greater efficiency.
- See Also
- vtkLinearTransform
- Tests:
- vtkIdentityTransform (Tests)
Definition at line 34 of file vtkIdentityTransform.h.