------------------------------------------------------------------------------
| 299 | |
| 300 | //------------------------------------------------------------------------------ |
| 301 | inline vtkIdType vtkCellIterator::GetNumberOfPoints() |
| 302 | { |
| 303 | if (!this->CheckCache(PointIdsFlag)) |
| 304 | { |
| 305 | this->FetchPointIds(); |
| 306 | this->SetCache(PointIdsFlag); |
| 307 | } |
| 308 | return this->PointIds->GetNumberOfIds(); |
| 309 | } |
| 310 | |
| 311 | //------------------------------------------------------------------------------ |
| 312 | inline vtkIdType vtkCellIterator::GetNumberOfFaces() |
nothing calls this directly
no test coverage detected