------------------------------------------------------------------------------
| 130 | |
| 131 | //------------------------------------------------------------------------------ |
| 132 | void vtkAngleRepresentation2D::SetCenterWorldPosition(double x[3]) |
| 133 | { |
| 134 | if (!this->CenterRepresentation) |
| 135 | { |
| 136 | vtkErrorMacro("SetCenterWorldPosition: no center representation"); |
| 137 | return; |
| 138 | } |
| 139 | this->CenterRepresentation->SetWorldPosition(x); |
| 140 | this->BuildRepresentation(); |
| 141 | } |
| 142 | |
| 143 | //------------------------------------------------------------------------------ |
| 144 | void vtkAngleRepresentation2D::SetPoint2DisplayPosition(double x[3]) |
nothing calls this directly
no test coverage detected