| 14 | #include <mitkBaseDataSource.h> |
| 15 | |
| 16 | mitk::BoundingObject::BoundingObject() : Surface(), m_Positive(true) |
| 17 | { |
| 18 | // Initialize(1); |
| 19 | |
| 20 | /* bounding box around the unscaled bounding object */ |
| 21 | ScalarType bounds[6] = {-1, 1, -1, 1, -1, 1}; //{xmin,x_max, ymin,y_max,zmin,z_max} |
| 22 | GetGeometry()->SetBounds(bounds); |
| 23 | GetTimeGeometry()->Update(); |
| 24 | } |
| 25 | |
| 26 | mitk::BoundingObject::~BoundingObject() |
| 27 | { |
nothing calls this directly
no test coverage detected