/** * \file BoundingBoxD.h \brief A bounding box in D dimensions. * * Copyright 2007-2010 IMP Inventors. All rights reserved. * */ #ifndef IMPALGEBRA_BOUNDING_BOX_D_H #define IMPALGEBRA_BOUNDING_BOX_D_H #include "VectorD.h" #include "Transformation3D.h" #include "algebra_macros.h" IMPALGEBRA_BEGIN_NAMESPACE //! An axis-aligned bounding box. /** The BoundingBoxD class provides a unified representation for bounding boxes in \imp. Geometric objects should have an associated namespace method like get_bounding_box() which returns the bounding boxes of objects. \note This class is a \ref geometricprimitives "geometric primitive". */ template class BoundingBoxD { void make_empty() { for (unsigned int i=0; i< D; ++i) { b_[0][i]= std::numeric_limits::max(); b_[1][i]=-std::numeric_limits::max(); } } public: // public for swig IMP_NO_DOXYGEN(typedef BoundingBoxD This); //! Create an empty bounding box BoundingBoxD() { make_empty(); } //! Make from the lower and upper corners BoundingBoxD(const VectorD &lb, const VectorD &ub){ b_[0]=lb; b_[1]=ub; IMP_IF_CHECK(USAGE) { for (unsigned int i=0; i< D; ++i) { IMP_USAGE_CHECK(lb[i] <= ub[i], "Invalid bounding box"); } } } //! Creating a bounding box containing one point BoundingBoxD(const VectorD &v) { b_[0]=v; b_[1]=v; } //! Creating a bounding box from a set of points BoundingBoxD(const std::vector > &points) { make_empty(); for(unsigned int j=0;j& operator+=(const BoundingBoxD &o) { for (unsigned int i=0; i< D; ++i) { b_[0][i]= std::min(o.get_corner(0)[i], get_corner(0)[i]); b_[1][i]= std::max(o.get_corner(1)[i], get_corner(1)[i]); } return *this; } //! merge two bounding boxes const BoundingBoxD& operator+=(const VectorD &o) { for (unsigned int i=0; i< D; ++i) { b_[0][i]= std::min(o[i], b_[0][i]); b_[1][i]= std::max(o[i], b_[1][i]); } return *this; } /** Grow the bounding box by o on all sizes. */ const BoundingBoxD& operator+=(double o) { for (unsigned int i=0; i< D; ++i) { b_[0][i]= b_[0][i]-o; b_[1][i]= b_[1][i]+o; } return *this; } template const BoundingBoxD operator+(const O &o) const { BoundingBoxD ret(*this); ret+= o; return ret; } //! For 0 return lower corner and 1 upper corner const VectorD& get_corner(unsigned int i) const { IMP_USAGE_CHECK(i < 2, "Can only use 0 or 1"); return b_[i]; } bool get_contains(const VectorD &o) const { for (unsigned int i=0; i< D; ++i) { if (o[i] < get_corner(0)[i] || o[i] > get_corner(1)[i]) return false; } return true; } //! True if the input bounding box is contained within this bounding box bool get_contains(const BoundingBoxD &bb) const { return get_contains(bb.get_corner(0)) && get_contains(bb.get_corner(1)); } IMP_SHOWABLE_INLINE(BoundingBoxD, out << b_[0] << ": " << b_[1]); private: VectorD b_[2]; }; IMP_VOLUME_GEOMETRY_METHODS_D(BoundingBox, bounding_box, if (0) std::cout << g; IMP_NOT_IMPLEMENTED, return (g.get_corner(1)[0]- g.get_corner(0)[0]) *(g.get_corner(1)[1]- g.get_corner(0)[1]) *(g.get_corner(1)[2]- g.get_corner(0)[2]), return g); #ifdef IMP_DOXYGEN /** See BoundingBoxD. */ typedef BoundingBoxD<3> BoundingBoxD<3>; #endif template BoundingBoxD get_unit_bounding_box_d() { return BoundingBoxD(get_zero_vector_d(), get_ones_vector_d()); } //! Return a bounding box containing the transformed box inline BoundingBoxD<3> get_transformed(const BoundingBoxD<3> &bb, const Transformation3D &tr) { BoundingBoxD<3> nbb; for (unsigned int i=0; i< 2; ++i) { for (unsigned int j=0; j< 2; ++j) { for (unsigned int k=0; k< 2; ++k) { algebra::VectorD<3> v(bb.get_corner(i)[0], bb.get_corner(j)[1], bb.get_corner(k)[2]); nbb+= tr.get_transformed(v); } } } return nbb; } //! Return true if they intersect template inline bool get_interiors_intersect(const BoundingBoxD &a, const BoundingBoxD &b) { for (unsigned int i=0; i< D; ++i) { if (a.get_corner(0)[i] > b.get_corner(1)[i]) return false; if (b.get_corner(0)[i] > a.get_corner(1)[i]) return false; } return true; } //! Return the maximum axis aligned extent template double get_maximum_length(const BoundingBoxD &a) { double e= a.get_corner(1)[0]-a.get_corner(0)[0]; for (unsigned int i=1; i< D; ++i) { double ce= a.get_corner(1)[0]-a.get_corner(0)[0]; e= std::max(ce, e); } return e; } IMPALGEBRA_END_NAMESPACE #endif /* IMPALGEBRA_BOUNDING_BOX_D_H */