------------------------------------------------------------------------------
| 466 | |
| 467 | //------------------------------------------------------------------------------ |
| 468 | vtkIdType vtkUnstructuredGrid::GetNumberOfCells() |
| 469 | { |
| 470 | vtkDebugMacro(<< "NUMBER OF CELLS = " |
| 471 | << (this->Connectivity ? this->Connectivity->GetNumberOfCells() : 0)); |
| 472 | return (this->Connectivity ? this->Connectivity->GetNumberOfCells() : 0); |
| 473 | } |
| 474 | |
| 475 | //------------------------------------------------------------------------------ |
| 476 | // Insert/create cell in object by type and list of point ids defining |
no outgoing calls
no test coverage detected