------------------------------------------------------------------------------ Description: Cell at current position \pre not_at_end: !IsAtEnd() \pre c_exists: c!=0 THREAD SAFE
| 69 | // \pre c_exists: c!=0 |
| 70 | // THREAD SAFE |
| 71 | void vtkBridgeCellIteratorOnDataSet::GetCell(vtkGenericAdaptorCell* c) |
| 72 | { |
| 73 | assert("pre: not_at_end" && !IsAtEnd()); |
| 74 | assert("pre: c_exists" && c != nullptr); |
| 75 | |
| 76 | vtkBridgeCell* c2 = static_cast<vtkBridgeCell*>(c); |
| 77 | c2->Init(this->DataSet, this->Id); |
| 78 | } |
| 79 | |
| 80 | //------------------------------------------------------------------------------ |
| 81 | // Description: |