| 100 | } |
| 101 | |
| 102 | void mitk::BaseGeometry::SetFloatBounds(const float bounds[6]) |
| 103 | { |
| 104 | mitk::BoundingBox::BoundsArrayType b; |
| 105 | const float *input = bounds; |
| 106 | int i = 0; |
| 107 | for (mitk::BoundingBox::BoundsArrayType::Iterator it = b.Begin(); i < 6; ++i) |
| 108 | *it++ = (mitk::ScalarType)*input++; |
| 109 | SetBounds(b); |
| 110 | } |
| 111 | |
| 112 | void mitk::BaseGeometry::SetFloatBounds(const double bounds[6]) |
| 113 | { |