------------------------------------------------------------------------------
| 736 | |
| 737 | //------------------------------------------------------------------------------ |
| 738 | inline vtkIdType vtkPolyData::GetNumberOfCells() |
| 739 | { |
| 740 | return (this->GetNumberOfVerts() + this->GetNumberOfLines() + this->GetNumberOfPolys() + |
| 741 | this->GetNumberOfStrips()); |
| 742 | } |
| 743 | |
| 744 | //------------------------------------------------------------------------------ |
| 745 | inline int vtkPolyData::GetCellType(vtkIdType cellId) |
no test coverage detected