| 28 | } |
| 29 | |
| 30 | mitk::PointSet::PointSet() : m_CalculateBoundingBox(true) |
| 31 | { |
| 32 | this->InitializeEmpty(); |
| 33 | } |
| 34 | |
| 35 | mitk::PointSet::PointSet(const PointSet &other) |
| 36 | : BaseData(other), m_PointSetSeries(other.GetPointSetSeriesSize()), m_CalculateBoundingBox(true) |
nothing calls this directly
no test coverage detected