============================================================================ ------------------------------------------------------------------------------ Here is the VTK class proper. ------------------------------------------------------------------------------ A convenience function to transform points (in the point set) as well as associated normals and vectors.
| 172 | // A convenience function to transform points (in the point set) as well as |
| 173 | // associated normals and vectors. |
| 174 | void vtkImageTransform::TransformPointSet(vtkImageData* im, vtkPointSet* ps) |
| 175 | { |
| 176 | vtkImageTransform::TransformPointSet(im, ps, true, true); |
| 177 | } |
| 178 | |
| 179 | //------------------------------------------------------------------------------ |
| 180 | // A convenience method to transform a point set, with the ability to control |
nothing calls this directly
no test coverage detected