------------------------------------------------------------------------------
| 1633 | |
| 1634 | //------------------------------------------------------------------------------ |
| 1635 | void vtkImageData::TransformIndexToPhysicalPoint(int i, int j, int k, double xyz[3]) |
| 1636 | { |
| 1637 | TransformCoordinates<int, double>(i, j, k, xyz, this->IndexToPhysicalMatrix); |
| 1638 | } |
| 1639 | |
| 1640 | //------------------------------------------------------------------------------ |
| 1641 | void vtkImageData::TransformIndexToPhysicalPoint(const int ijk[3], double xyz[3]) |
no outgoing calls