------------------------------------------------------------------------------
| 62 | |
| 63 | //------------------------------------------------------------------------------ |
| 64 | void vtkAngleRepresentation2D::GetCenterWorldPosition(double pos[3]) VTK_FUTURE_CONST |
| 65 | { |
| 66 | if (this->CenterRepresentation) |
| 67 | { |
| 68 | this->CenterRepresentation->GetWorldPosition(pos); |
| 69 | } |
| 70 | else |
| 71 | { |
| 72 | pos[0] = pos[1] = pos[2] = 0.0; |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | //------------------------------------------------------------------------------ |
| 77 | void vtkAngleRepresentation2D::GetPoint2WorldPosition(double pos[3]) VTK_FUTURE_CONST |