------------------------------------------------------------------------------
| 268 | |
| 269 | //------------------------------------------------------------------------------ |
| 270 | inline vtkCellArray* vtkCellIterator::GetCellFaces() |
| 271 | { |
| 272 | if (!this->CheckCache(FacesFlag)) |
| 273 | { |
| 274 | this->FetchFaces(); |
| 275 | this->SetCache(FacesFlag); |
| 276 | } |
| 277 | return this->Faces; |
| 278 | } |
| 279 | |
| 280 | //------------------------------------------------------------------------------ |
| 281 | inline vtkIdList* vtkCellIterator::GetSerializedCellFaces() |
no test coverage detected