------------------------------------------------------------------------------
| 107 | |
| 108 | //------------------------------------------------------------------------------ |
| 109 | double* vtkGraph::GetPoint(vtkIdType ptId) |
| 110 | { |
| 111 | if (this->Points) |
| 112 | { |
| 113 | return this->Points->GetPoint(ptId); |
| 114 | } |
| 115 | return vtkGraph::DefaultPoint; |
| 116 | } |
| 117 | |
| 118 | //------------------------------------------------------------------------------ |
| 119 | void vtkGraph::GetPoint(vtkIdType ptId, double x[3]) |
no test coverage detected