------------------------------------------------------------------------------
| 88 | |
| 89 | //------------------------------------------------------------------------------ |
| 90 | void vtkAngleRepresentation2D::SetPoint1DisplayPosition(double x[3]) |
| 91 | { |
| 92 | if (!this->Point1Representation) |
| 93 | { |
| 94 | vtkErrorMacro("SetPoint1DisplayPosition: no point1 representation"); |
| 95 | return; |
| 96 | } |
| 97 | this->Point1Representation->SetDisplayPosition(x); |
| 98 | double p[3]; |
| 99 | this->Point1Representation->GetWorldPosition(p); |
| 100 | this->Point1Representation->SetWorldPosition(p); |
| 101 | this->BuildRepresentation(); |
| 102 | } |
| 103 | |
| 104 | //------------------------------------------------------------------------------ |
| 105 | void vtkAngleRepresentation2D::SetPoint1WorldPosition(double x[3]) |
nothing calls this directly
no test coverage detected