@{ * Return the number of primitives of a particular type held. */
| 221 | * Return the number of primitives of a particular type held. |
| 222 | */ |
| 223 | vtkIdType GetNumberOfVerts() { return (this->Verts ? this->Verts->GetNumberOfCells() : 0); } |
| 224 | vtkIdType GetNumberOfLines() { return (this->Lines ? this->Lines->GetNumberOfCells() : 0); } |
| 225 | vtkIdType GetNumberOfPolys() { return (this->Polys ? this->Polys->GetNumberOfCells() : 0); } |
| 226 | vtkIdType GetNumberOfStrips() { return (this->Strips ? this->Strips->GetNumberOfCells() : 0); } |