------------------------------------------------------------------------------ This Method returns a pointer to a location in the vtkImageData. Coordinates are in pixel units and are relative to the whole image origin.
| 942 | // Coordinates are in pixel units and are relative to the whole |
| 943 | // image origin. |
| 944 | void* vtkImageData::GetScalarPointer(int x, int y, int z) |
| 945 | { |
| 946 | return this->GetArrayPointer(this->GetPointData()->GetScalars(), x, y, z); |
| 947 | } |
| 948 | |
| 949 | //------------------------------------------------------------------------------ |
| 950 | // This Method returns a pointer to a location in the vtkImageData. |