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

Method ConvertToFixedSizeDefaultStorage

Common/DataModel/vtkCellArray.cxx:1291–1301  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1289
1290//------------------------------------------------------------------------------
1291bool vtkCellArray::ConvertToFixedSizeDefaultStorage()
1292{
1293 if (this->GetDefaultStorageIs64Bit())
1294 {
1295 return this->ConvertToFixedSize64BitStorage();
1296 }
1297 else
1298 {
1299 return this->ConvertToFixedSize32BitStorage();
1300 }
1301}
1302
1303//------------------------------------------------------------------------------
1304bool vtkCellArray::ConvertToSmallestStorage()

Callers

nothing calls this directly

Tested by

no test coverage detected