| 238 | } |
| 239 | |
| 240 | mitk::Point2D mitk::PlanarFigure::GetControlPoint(unsigned int index) const |
| 241 | { |
| 242 | if (index < m_NumberOfControlPoints) |
| 243 | { |
| 244 | return m_ControlPoints.at(index); |
| 245 | } |
| 246 | |
| 247 | itkExceptionMacro(<< "GetControlPoint(): Invalid index!"); |
| 248 | } |
| 249 | |
| 250 | mitk::Point3D mitk::PlanarFigure::GetWorldControlPoint(unsigned int index) const |
| 251 | { |