----------------------------------------------------------------------------
| 5819 | |
| 5820 | //---------------------------------------------------------------------------- |
| 5821 | vtkDIYGhostUtilities::ImageDataBlockStructure::ImageDataBlockStructure(const int extent[6], int dim, |
| 5822 | const double origin[3], const double spacing[3], const double orientationQuaternion[4]) |
| 5823 | : GridBlockStructure(extent, dim) |
| 5824 | , Origin{ origin[0], origin[1], origin[2] } |
| 5825 | , Spacing{ spacing[0], spacing[1], spacing[2] } |
| 5826 | , OrientationQuaternion{ orientationQuaternion[0], orientationQuaternion[1], |
| 5827 | orientationQuaternion[2], orientationQuaternion[3] } |
| 5828 | { |
| 5829 | } |
| 5830 | |
| 5831 | //---------------------------------------------------------------------------- |
| 5832 | vtkDIYGhostUtilities::ImageDataBlockStructure::ImageDataBlockStructure(const int extent[6], int dim, |
nothing calls this directly
no test coverage detected