------------------------------------------------------------------------------
| 197 | |
| 198 | //------------------------------------------------------------------------------ |
| 199 | void vtkAngleRepresentation2D::GetPoint2DisplayPosition(double pos[3]) VTK_FUTURE_CONST |
| 200 | { |
| 201 | if (this->Point2Representation) |
| 202 | { |
| 203 | this->Point2Representation->GetDisplayPosition(pos); |
| 204 | pos[2] = 0.0; |
| 205 | } |
| 206 | else |
| 207 | { |
| 208 | pos[0] = pos[1] = pos[2] = 0.0; |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | //------------------------------------------------------------------------------ |
| 213 | void vtkAngleRepresentation2D::BuildRepresentation() |
no test coverage detected