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

Method GetNumberOfCells

Common/DataModel/vtkCellGrid.cxx:304–312  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

302}
303
304vtkIdType vtkCellGrid::GetNumberOfCells()
305{
306 vtkIdType result = 0;
307 for (const auto& cellType : this->Cells)
308 {
309 result += cellType.second->GetNumberOfCells();
310 }
311 return result;
312}
313
314void vtkCellGrid::GetBounds(double bounds[6])
315{

Callers 3

GetNumberOfElementsMethod · 0.95
AddAllCellMetadataMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected