| 25 | const mitk::ScalarType PI = 3.14159265359; |
| 26 | |
| 27 | mitk::SlicedGeometry3D::SlicedGeometry3D() |
| 28 | : m_EvenlySpaced(true), m_Slices(0), m_ReferenceGeometry(nullptr), m_SliceNavigationController(nullptr) |
| 29 | { |
| 30 | m_DirectionVector.Fill(0); |
| 31 | this->InitializeSlicedGeometry(m_Slices); |
| 32 | } |
| 33 | |
| 34 | mitk::SlicedGeometry3D::SlicedGeometry3D(const SlicedGeometry3D &other) |
| 35 | : Superclass(other), |
nothing calls this directly
no test coverage detected