| 81 | } |
| 82 | |
| 83 | void mitk::PlanarRectangle::GeneratePolyLine() |
| 84 | { |
| 85 | this->ClearPolyLines(); |
| 86 | |
| 87 | for (unsigned int i = 0; i < this->GetNumberOfControlPoints(); ++i) |
| 88 | this->AppendPointToPolyLine(0, this->GetControlPoint(i)); |
| 89 | } |
| 90 | |
| 91 | void mitk::PlanarRectangle::GenerateHelperPolyLine(double /*mmPerDisplayUnit*/, unsigned int /*displayHeight*/) |
| 92 | { |
nothing calls this directly
no test coverage detected