| 302 | } |
| 303 | |
| 304 | vtkIdType 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 | |
| 314 | void vtkCellGrid::GetBounds(double bounds[6]) |
| 315 | { |
no outgoing calls
no test coverage detected