------------------------------------------------------------------------------ This Method returns a pointer to a location in the vtkImageData. Coordinates are in pixel units and are relative to the whole image origin.
| 951 | // Coordinates are in pixel units and are relative to the whole |
| 952 | // image origin. |
| 953 | void* vtkImageData::GetScalarPointerForExtent(int extent[6]) |
| 954 | { |
| 955 | return this->GetArrayPointerForExtent(this->GetPointData()->GetScalars(), extent); |
| 956 | } |
| 957 | |
| 958 | //------------------------------------------------------------------------------ |
| 959 | void* vtkImageData::GetScalarPointer(int coordinate[3]) |
no test coverage detected