------------------------------------------------------------------------------
| 109 | |
| 110 | //------------------------------------------------------------------------------ |
| 111 | void vtkAbstractTransform::TransformVectorAtPoint( |
| 112 | const double point[3], const double in[3], double out[3]) |
| 113 | { |
| 114 | this->Update(); |
| 115 | |
| 116 | double matrix[3][3]; |
| 117 | double coord[3]; |
| 118 | |
| 119 | this->InternalTransformDerivative(point, coord, matrix); |
| 120 | vtkMath::Multiply3x3(matrix, in, out); |
| 121 | } |
| 122 | |
| 123 | void vtkAbstractTransform::TransformVectorAtPoint( |
| 124 | const float point[3], const float in[3], float out[3]) |
no test coverage detected