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

Method CanConvertToFixedSizeDefaultStorage

Common/DataModel/vtkCellArray.cxx:1221–1231  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1219
1220//------------------------------------------------------------------------------
1221bool vtkCellArray::CanConvertToFixedSizeDefaultStorage() const
1222{
1223 if (this->GetDefaultStorageIs64Bit())
1224 {
1225 return this->CanConvertToFixedSize64BitStorage();
1226 }
1227 else
1228 {
1229 return this->CanConvertToFixedSize32BitStorage();
1230 }
1231}
1232
1233//------------------------------------------------------------------------------
1234bool vtkCellArray::ConvertToDefaultStorage()

Callers

nothing calls this directly

Tested by

no test coverage detected