// Copyright (c) 1999,2004 Utrecht University (The Netherlands), // ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg // (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), // and Tel-Aviv University (Israel). All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; version 2.1 of the License. // See the file LICENSE.LGPL distributed with CGAL. // // Licensees holding a valid commercial license may use this file in // accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // // $URL$ // $Id$ // // Author(s) : Andreas Fabri #ifndef CGAL_BBOX_3_H #define CGAL_BBOX_3_H #include #include #include #include CGAL_BEGIN_NAMESPACE template < typename T > struct Simple_cartesian; class Bbox_3 { Sixtuple rep; public: typedef Dimension_tag<3> Ambient_dimension; typedef Dimension_tag<3> Feature_dimension; typedef Simple_cartesian R; Bbox_3() {} Bbox_3(double x_min, double y_min, double z_min, double x_max, double y_max, double z_max) : rep(x_min, y_min, z_min, x_max, y_max, z_max) {} inline bool operator==(const Bbox_3 &b) const; inline bool operator!=(const Bbox_3 &b) const; inline int dimension() const; double xmin() const; double ymin() const; double zmin() const; double xmax() const; double ymax() const; double zmax() const; inline double min BOOST_PREVENT_MACRO_SUBSTITUTION (int i) const; inline double max BOOST_PREVENT_MACRO_SUBSTITUTION (int i) const; Bbox_3 operator+(const Bbox_3& b) const; }; inline double Bbox_3::xmin() const { return rep.e0; } inline double Bbox_3::ymin() const { return rep.e1; } inline double Bbox_3::zmin() const { return rep.e2; } inline double Bbox_3::xmax() const { return rep.e3; } inline double Bbox_3::ymax() const { return rep.e4; } inline double Bbox_3::zmax() const { return rep.e5; } inline bool Bbox_3::operator==(const Bbox_3 &b) const { return xmin() == b.xmin() && xmax() == b.xmax() && ymin() == b.ymin() && ymax() == b.ymax() && zmin() == b.zmin() && zmax() == b.zmax(); } inline bool Bbox_3::operator!=(const Bbox_3 &b) const { return ! (b == *this); } inline int Bbox_3::dimension() const { return 3; } inline double Bbox_3::min BOOST_PREVENT_MACRO_SUBSTITUTION (int i) const { CGAL_kernel_precondition( (i == 0 ) || ( i == 1 ) || ( i == 2) ); if (i == 0) { return xmin(); } if (i == 1) { return ymin(); } return zmin(); } inline double Bbox_3::max BOOST_PREVENT_MACRO_SUBSTITUTION (int i) const { CGAL_kernel_precondition( (i == 0 ) || ( i == 1 ) || ( i == 2 ) ); if (i == 0) { return xmax(); } if (i == 1) { return ymax(); } return zmax(); } inline Bbox_3 Bbox_3::operator+(const Bbox_3& b) const { return Bbox_3((std::min)(xmin(), b.xmin()), (std::min)(ymin(), b.ymin()), (std::min)(zmin(), b.zmin()), (std::max)(xmax(), b.xmax()), (std::max)(ymax(), b.ymax()), (std::max)(zmax(), b.zmax())); } inline bool do_overlap(const Bbox_3& bb1, const Bbox_3& bb2) { // check for emptiness ?? if (bb1.xmax() < bb2.xmin() || bb2.xmax() < bb1.xmin()) return false; if (bb1.ymax() < bb2.ymin() || bb2.ymax() < bb1.ymin()) return false; if (bb1.zmax() < bb2.zmin() || bb2.zmax() < bb1.zmin()) return false; return true; } inline std::ostream& operator<<(std::ostream &os, const Bbox_3& b) { switch(os.iword(IO::mode)) { case IO::ASCII : return os << b.xmin() << ' ' << b.ymin() << ' ' << b.zmin() << ' ' << b.xmax() << ' ' << b.ymax() << ' ' << b.zmax(); case IO::BINARY : write(os, b.xmin()); write(os, b.ymin()); write(os, b.zmin()); write(os, b.xmax()); write(os, b.ymax()); write(os, b.zmax()); return os; default: os << "Bbox_3((" << b.xmin() << ", " << b.ymin() << ", " << b.zmin() << "), ("; os << b.xmax() << ", " << b.ymax() << ", " << b.zmax() << "))"; return os; } } inline std::istream& operator>>(std::istream &is, Bbox_3& b) { double xmin, ymin, zmin, xmax, ymax, zmax; switch(is.iword(IO::mode)) { case IO::ASCII : is >> xmin >> ymin >> zmin >> xmax >> ymax >> zmax; break; case IO::BINARY : read(is, xmin); read(is, ymin); read(is, zmin); read(is, xmax); read(is, ymax); read(is, zmax); break; } if (is) b = Bbox_3(xmin, ymin, zmin, xmax, ymax, zmax); return is; } CGAL_END_NAMESPACE #endif // CGAL_BBOX_3_H