------------------------------------------------------------------------------
| 113 | |
| 114 | //------------------------------------------------------------------------------ |
| 115 | void vtkAngleRepresentation::StartWidgetInteraction(double e[2]) |
| 116 | { |
| 117 | double pos[3]; |
| 118 | pos[0] = e[0]; |
| 119 | pos[1] = e[1]; |
| 120 | pos[2] = 0.0; |
| 121 | this->SetPoint1DisplayPosition(pos); |
| 122 | this->SetCenterDisplayPosition(pos); |
| 123 | this->SetPoint2DisplayPosition(pos); |
| 124 | } |
| 125 | |
| 126 | //------------------------------------------------------------------------------ |
| 127 | void vtkAngleRepresentation::CenterWidgetInteraction(double e[2]) |
nothing calls this directly
no test coverage detected