------------------------------------------------------------------------------ Description: Point at iterator position. \pre not_off: !IsAtEnd() \post result_exists: result!=0
| 80 | // \pre not_off: !IsAtEnd() |
| 81 | // \post result_exists: result!=0 |
| 82 | double* vtkBridgePointIteratorOnCell::GetPosition() |
| 83 | { |
| 84 | assert("pre: not_off" && !IsAtEnd()); |
| 85 | |
| 86 | double* result = this->DataSet->Implementation->GetPoint(this->PtIds->GetId(this->Cursor)); |
| 87 | |
| 88 | assert("post: result_exists" && result != nullptr); |
| 89 | return result; |
| 90 | } |
| 91 | |
| 92 | //------------------------------------------------------------------------------ |
| 93 | // Description: |