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

Method CanConvertTo32BitStorage

Common/DataModel/vtkCellArray.cxx:1123–1132  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1121
1122//------------------------------------------------------------------------------
1123bool vtkCellArray::CanConvertTo32BitStorage() const
1124{
1125 if (this->IsStorage32Bit())
1126 {
1127 return true;
1128 }
1129 bool canConvert;
1130 this->Dispatch(CanConvert<AOSArray32::ValueType>{}, canConvert);
1131 return canConvert;
1132}
1133
1134//------------------------------------------------------------------------------
1135bool vtkCellArray::CanConvertTo64BitStorage() const

Calls 1

DispatchMethod · 0.45