------------------------------------------------------------------------------
| 75 | |
| 76 | //------------------------------------------------------------------------------ |
| 77 | void vtkAngleRepresentation2D::GetPoint2WorldPosition(double pos[3]) VTK_FUTURE_CONST |
| 78 | { |
| 79 | if (this->Point2Representation) |
| 80 | { |
| 81 | this->Point2Representation->GetWorldPosition(pos); |
| 82 | } |
| 83 | else |
| 84 | { |
| 85 | pos[0] = pos[1] = pos[2] = 0.0; |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | //------------------------------------------------------------------------------ |
| 90 | void vtkAngleRepresentation2D::SetPoint1DisplayPosition(double x[3]) |
no test coverage detected