MCPcopy Create free account
hub / github.com/Kitware/VTK / GetAxisUpdateExtent

Method GetAxisUpdateExtent

Common/DataModel/vtkImageData.cxx:1361–1371  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

1359
1360//------------------------------------------------------------------------------
1361void 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//------------------------------------------------------------------------------
1374unsigned long vtkImageData::GetActualMemorySize()

Callers 2

vtkImageWriter.cxxFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected