------------------------------------------------------------------------------
| 257 | |
| 258 | //------------------------------------------------------------------------------ |
| 259 | inline vtkPoints* vtkCellIterator::GetPoints() |
| 260 | { |
| 261 | if (!this->CheckCache(PointsFlag)) |
| 262 | { |
| 263 | this->FetchPoints(); |
| 264 | this->SetCache(PointsFlag); |
| 265 | } |
| 266 | return this->Points; |
| 267 | } |
| 268 | |
| 269 | //------------------------------------------------------------------------------ |
| 270 | inline vtkCellArray* vtkCellIterator::GetCellFaces() |
no test coverage detected