Medical Imaging Interaction Toolkit  2025.12.02
Medical Imaging Interaction Toolkit
mitkPlanarAngle.h
Go to the documentation of this file.
1 /*============================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center (DKFZ)
6 All rights reserved.
7 
8 Use of this source code is governed by a 3-clause BSD license that can be
9 found in the LICENSE file.
10 
11 ============================================================================*/
12 
13 #ifndef mitkPlanarAngle_h
14 #define mitkPlanarAngle_h
15 
16 #include "mitkPlanarFigure.h"
18 
19 namespace mitk
20 {
21  class PlaneGeometry;
22 
28  {
29  public:
31 
32  itkFactorylessNewMacro(Self);
33 
34  itkCloneMacro(Self) public :
35  // Feature identifiers
36  const unsigned int FEATURE_ID_ANGLE;
37 
43  // virtual void Initialize();
44 
46  unsigned int GetMinimumNumberOfControlPoints() const override { return 3; }
48  unsigned int GetMaximumNumberOfControlPoints() const override { return 3; }
49  bool Equals(const mitk::PlanarFigure &other) const override;
50 
51  protected:
53 
55 
57  void GeneratePolyLine() override;
58 
60  void GenerateHelperPolyLine(double mmPerDisplayUnit, unsigned int displayHeight) override;
61 
63  void EvaluateFeaturesInternal() override;
64 
65  void PrintSelf(std::ostream &os, itk::Indent indent) const override;
66 
67  private:
68  };
69 
70 } // namespace mitk
71 
72 #endif
#define MITKPLANARFIGURE_EXPORT
Implementation of PlanarFigure to display an angle through three control points.
void EvaluateFeaturesInternal() override
Calculates feature quantities of the planar figure.
unsigned int GetMaximumNumberOfControlPoints() const override
Angle has 3 control points per definition.
void PrintSelf(std::ostream &os, itk::Indent indent) const override
unsigned int GetMinimumNumberOfControlPoints() const override
Place figure in its minimal configuration (a point at least) onto the given 2D geometry.
mitkClassMacro(PlanarAngle, PlanarFigure)
void GenerateHelperPolyLine(double mmPerDisplayUnit, unsigned int displayHeight) override
Generates the poly-lines that should be drawn the same size regardless of zoom.
bool Equals(const mitk::PlanarFigure &other) const override
Compare two PlanarFigure objects Note: all subclasses have to implement the method on their own.
void GeneratePolyLine() override
Generates the poly-line representation of the planar figure.
const unsigned int FEATURE_ID_ANGLE
Base-class for geometric planar (2D) figures, such as lines, circles, rectangles, polygons,...
Find image slices visible on a given plane.