------------------------------------------------------------------------------
| 270 | |
| 271 | //------------------------------------------------------------------------------ |
| 272 | void vtkVolumeTexture::AdjustExtentForCell(Size6& extent) |
| 273 | { |
| 274 | int i = 1; |
| 275 | while (i < 6) |
| 276 | { |
| 277 | extent[i]--; |
| 278 | i += 2; |
| 279 | } |
| 280 | } |
| 281 | |
| 282 | //------------------------------------------------------------------------------ |
| 283 | vtkVolumeTexture::Size3 vtkVolumeTexture::ComputeBlockSize(int* extent) |
no outgoing calls
no test coverage detected