Interface to vtkSMPTools
| 50 | |
| 51 | // Interface to vtkSMPTools |
| 52 | static void Execute(const double t[3], vtkIdType num, T* pts) |
| 53 | { |
| 54 | InPlaceTranslatePoints<T> translate(t, pts); |
| 55 | vtkSMPTools::For(0, num, translate); |
| 56 | } |
| 57 | }; // InPlaceTransformPoints |
| 58 | |
| 59 | template <typename T> |