| 32 | // as appropriate. |
| 33 | template <class T> |
| 34 | void vtkWarpTransformPoint(vtkWarpTransform* self, int inverse, const T input[3], T output[3]) |
| 35 | { |
| 36 | if (inverse) |
| 37 | { |
| 38 | self->TemplateTransformInverse(input, output); |
| 39 | } |
| 40 | else |
| 41 | { |
| 42 | self->TemplateTransformPoint(input, output); |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | void vtkWarpTransform::InternalTransformPoint(const float input[3], float output[3]) |
| 47 | { |
no outgoing calls
no test coverage detected