------------------------------------------------------------------------------
| 1359 | |
| 1360 | //------------------------------------------------------------------------------ |
| 1361 | void vtkImageData::GetAxisUpdateExtent(int idx, int& min, int& max, const int* updateExtent) |
| 1362 | { |
| 1363 | if (idx > 2) |
| 1364 | { |
| 1365 | vtkWarningMacro("illegal axis!"); |
| 1366 | return; |
| 1367 | } |
| 1368 | |
| 1369 | min = updateExtent[idx * 2]; |
| 1370 | max = updateExtent[idx * 2 + 1]; |
| 1371 | } |
| 1372 | |
| 1373 | //------------------------------------------------------------------------------ |
| 1374 | unsigned long vtkImageData::GetActualMemorySize() |
no outgoing calls
no test coverage detected