------------------------------------------------------------------------------ Description: Unique identifier for the point, could be non-contiguous \pre not_off: !IsAtEnd()
| 106 | // Unique identifier for the point, could be non-contiguous |
| 107 | // \pre not_off: !IsAtEnd() |
| 108 | vtkIdType vtkBridgePointIteratorOnCell::GetId() |
| 109 | { |
| 110 | assert("pre: not_off" && !IsAtEnd()); |
| 111 | |
| 112 | return this->PtIds->GetId(this->Cursor); |
| 113 | } |
| 114 | |
| 115 | //------------------------------------------------------------------------------ |
| 116 | // Description: |
no test coverage detected