------------------------------------------------------------------------------
| 147 | |
| 148 | //------------------------------------------------------------------------------ |
| 149 | void vtkLinearTransform::InternalTransformPoint(const float in[3], float out[3]) |
| 150 | { |
| 151 | vtkLinearTransformPoint(this->Matrix->Element, in, out); |
| 152 | } |
| 153 | |
| 154 | //------------------------------------------------------------------------------ |
| 155 | void vtkLinearTransform::InternalTransformPoint(const double in[3], double out[3]) |
nothing calls this directly
no test coverage detected