------------------------------------------------------------------------------ Description: Point at iterator position. \pre not_off: !IsAtEnd() \post result_exists: result!=0
| 73 | // \pre not_off: !IsAtEnd() |
| 74 | // \post result_exists: result!=0 |
| 75 | double* vtkBridgePointIteratorOnDataSet::GetPosition() |
| 76 | { |
| 77 | assert("pre: not_off" && !IsAtEnd()); |
| 78 | |
| 79 | double* result = this->DataSet->Implementation->GetPoint(this->Id); |
| 80 | |
| 81 | assert("post: result_exists" && result != nullptr); |
| 82 | return result; |
| 83 | } |
| 84 | |
| 85 | //------------------------------------------------------------------------------ |
| 86 | // Description: |