------------------------------------------------------------------------------
| 235 | |
| 236 | //------------------------------------------------------------------------------ |
| 237 | inline int vtkCellIterator::GetCellType() |
| 238 | { |
| 239 | if (!this->CheckCache(CellTypeFlag)) |
| 240 | { |
| 241 | this->FetchCellType(); |
| 242 | this->SetCache(CellTypeFlag); |
| 243 | } |
| 244 | return this->CellType; |
| 245 | } |
| 246 | |
| 247 | //------------------------------------------------------------------------------ |
| 248 | inline vtkIdList* vtkCellIterator::GetPointIds() |
no test coverage detected