| 14 | #include <vtkMath.h> |
| 15 | |
| 16 | mitk::ContourModelSet::ContourModelSet() : m_Contours(), m_UpdateBoundingBox(true) |
| 17 | { |
| 18 | this->InitializeEmpty(); |
| 19 | } |
| 20 | |
| 21 | mitk::ContourModelSet::ContourModelSet(const mitk::ContourModelSet &other) |
| 22 | : mitk::BaseData(other), m_UpdateBoundingBox(other.m_UpdateBoundingBox) |
nothing calls this directly
no test coverage detected