------------------------------------------------------------------------------
| 142 | |
| 143 | //------------------------------------------------------------------------------ |
| 144 | void vtkAngleRepresentation2D::SetPoint2DisplayPosition(double x[3]) |
| 145 | { |
| 146 | if (!this->Point2Representation) |
| 147 | { |
| 148 | vtkErrorMacro("SetPoint2DisplayPosition: no point2 representation"); |
| 149 | return; |
| 150 | } |
| 151 | this->Point2Representation->SetDisplayPosition(x); |
| 152 | double p[3]; |
| 153 | this->Point2Representation->GetWorldPosition(p); |
| 154 | this->Point2Representation->SetWorldPosition(p); |
| 155 | this->BuildRepresentation(); |
| 156 | } |
| 157 | |
| 158 | //------------------------------------------------------------------------------ |
| 159 | void vtkAngleRepresentation2D::SetPoint2WorldPosition(double x[3]) |
nothing calls this directly
no test coverage detected