------------------------------------------------------------------------------ Description: Return the points of cell into `it'. \pre it_exists: it!=0
| 264 | // Return the points of cell into `it'. |
| 265 | // \pre it_exists: it!=0 |
| 266 | void vtkBridgeCell::GetPointIterator(vtkGenericPointIterator* it) |
| 267 | { |
| 268 | assert("pre: it_exists" && it != nullptr); |
| 269 | static_cast<vtkBridgePointIterator*>(it)->InitWithCell(this); |
| 270 | } |
| 271 | |
| 272 | //------------------------------------------------------------------------------ |
| 273 | // Description: |