------------------------------------------------------------------------------ Description: Cell at current position \pre not_at_end: !IsAtEnd() \pre c_exists: c!=0 THREAD SAFE
| 77 | // \pre c_exists: c!=0 |
| 78 | // THREAD SAFE |
| 79 | void vtkBridgeCellIteratorOnCellList::GetCell(vtkGenericAdaptorCell* c) |
| 80 | { |
| 81 | assert("pre: not_at_end" && !IsAtEnd()); |
| 82 | assert("pre: c_exists" && c != nullptr); |
| 83 | |
| 84 | vtkBridgeCell* c2 = static_cast<vtkBridgeCell*>(c); |
| 85 | c2->Init(this->DataSet, this->Cells->GetId(this->Id)); |
| 86 | } |
| 87 | |
| 88 | //------------------------------------------------------------------------------ |
| 89 | // Description: |