| 31 | } |
| 32 | |
| 33 | void mitk::PlanarAngle::GeneratePolyLine() |
| 34 | { |
| 35 | this->ClearPolyLines(); |
| 36 | |
| 37 | for (unsigned int i = 0; i < this->GetNumberOfControlPoints(); i++) |
| 38 | this->AppendPointToPolyLine(0, this->GetControlPoint(i)); |
| 39 | } |
| 40 | |
| 41 | void mitk::PlanarAngle::GenerateHelperPolyLine(double mmPerDisplayUnit, unsigned int displayHeight) |
| 42 | { |
nothing calls this directly
no test coverage detected