mirror of https://github.com/CGAL/cgal
189 lines
5.0 KiB
C++
189 lines
5.0 KiB
C++
// Copyright (c) 2022 Institut Géographique National - IGN (France)
|
|
// All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org).
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
|
|
//
|
|
// Author(s) : Mathieu Brédif
|
|
|
|
#ifndef CGAL_BBOX_H
|
|
#define CGAL_BBOX_H
|
|
|
|
#include <boost/config.hpp> // defines BOOST_PREVENT_MACRO_SUBSTITUTION
|
|
#include <stddef.h>
|
|
#include <limits>
|
|
#include <array>
|
|
#include <iostream>
|
|
#include <iterator>
|
|
#include <CGAL/assertions.h>
|
|
#include <CGAL/Dimension.h>
|
|
|
|
namespace CGAL {
|
|
namespace Impl {
|
|
|
|
template<typename Container, typename Derived>
|
|
class Bbox
|
|
{
|
|
protected:
|
|
typedef typename Container::value_type T;
|
|
Container min_values;
|
|
Container max_values;
|
|
|
|
public:
|
|
Bbox& operator+=(const Bbox& bbox)
|
|
{
|
|
CGAL_assertion(min_values.size() == 0 || min_values.size() == bbox.min_values.size());
|
|
if(min_values.size() == 0){
|
|
*this = bbox;
|
|
}
|
|
int dim = bbox.min_values.size();
|
|
for(int i=0; i<dim; ++i)
|
|
{
|
|
if(min_values[i] > bbox.min_values[i]) min_values[i] = bbox.min_values[i];
|
|
if(max_values[i] < bbox.max_values[i]) max_values[i] = bbox.max_values[i];
|
|
}
|
|
return *this;
|
|
}
|
|
|
|
inline int dimension() const
|
|
{
|
|
return static_cast<const Derived*>(this)->dimension();
|
|
}
|
|
|
|
inline T min BOOST_PREVENT_MACRO_SUBSTITUTION (int i) const
|
|
{
|
|
return min_values[i];
|
|
}
|
|
|
|
inline T max BOOST_PREVENT_MACRO_SUBSTITUTION (int i) const
|
|
{
|
|
return max_values[i];
|
|
}
|
|
|
|
inline T& min BOOST_PREVENT_MACRO_SUBSTITUTION (int i)
|
|
{
|
|
return min_values[i];
|
|
}
|
|
|
|
inline T& max BOOST_PREVENT_MACRO_SUBSTITUTION (int i)
|
|
{
|
|
return max_values[i];
|
|
}
|
|
|
|
inline T measure() const {
|
|
T result = max_values[0] - min_values[0];
|
|
if (result <= 0) return 0;
|
|
for(int i=1; i<dimension(); ++i)
|
|
result *= max_values[i] - min_values[i];
|
|
return result;
|
|
}
|
|
|
|
inline T intersection_measure(const Bbox& bbox) const {
|
|
CGAL_assertion(dimension() == bbox.dimension());
|
|
T result = 1;
|
|
for(int i=0; i<dimension(); ++i) {
|
|
result *= (std::min)((max)(i), (bbox.max)(i)) -
|
|
(std::max)((min)(i), (bbox.min)(i));
|
|
if (result <= 0) return 0;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
bool operator==(const Bbox& bbox) const {
|
|
for(int i=0; i<dimension(); ++i)
|
|
if (min_values[i] != bbox.min_values[i] || max_values[i] != bbox.max_values[i])
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
bool operator!=(const Bbox& bbox) const { return !operator==(bbox); }
|
|
|
|
protected:
|
|
void init(int d, T range = -std::numeric_limits<T>::infinity()) {
|
|
for(int i=0; i<d; ++i)
|
|
{
|
|
min_values[i] = -range;
|
|
max_values[i] = range;
|
|
}
|
|
}
|
|
|
|
template <typename I>
|
|
void init(int d, I b, I e) {
|
|
CGAL_assertion(d == std::distance(b,e));
|
|
for(int i=0; i<d; ++i,++b)
|
|
{
|
|
min_values[i] = (*b).first;
|
|
max_values[i] = (*b).second;
|
|
}
|
|
}
|
|
};
|
|
|
|
}
|
|
|
|
template <typename Di, typename T>
|
|
class Bbox;
|
|
|
|
// A fixed D-dimensional axis aligned box
|
|
template<int N, typename T>
|
|
class Bbox<Dimension_tag<N>, T> : public Impl::Bbox<std::array<T, N>, Bbox<Dimension_tag<N>,T>>
|
|
{
|
|
enum { D = N };
|
|
public:
|
|
inline constexpr int dimension() const { return D; }
|
|
Bbox(int d = 0 ) { CGAL_assertion(d==N || d==0); this->init(d ); }
|
|
Bbox(int d, const T& range) { CGAL_assertion(d==N || d==0); this->init(d, range); }
|
|
template <typename I>
|
|
Bbox(int d, I b, I e) { CGAL_assertion(d==N || d==0); this->init(d, b, e); }
|
|
};
|
|
|
|
// A dynamic D-dimensional axis aligned box
|
|
template<typename T>
|
|
class Bbox<Dynamic_dimension_tag,T> : public Impl::Bbox<std::vector<T>, Bbox<Dynamic_dimension_tag,T>>
|
|
{
|
|
public:
|
|
inline int dimension() const { return this->min_values.size(); }
|
|
Bbox(int d = 0 ) { init_values(d); this->init(d ); }
|
|
Bbox(int d, const T& range) { init_values(d); this->init(d, range); }
|
|
template <typename I>
|
|
Bbox(int d, I b, I e) { init_values(d); this->init(d, b, e); }
|
|
|
|
protected:
|
|
void init_values(int d) {
|
|
this->min_values.resize(d);
|
|
this->max_values.resize(d);
|
|
}
|
|
};
|
|
|
|
template<typename Container, typename Derived>
|
|
std::ostream& operator<<(std::ostream& out, const Impl::Bbox<Container, Derived>& bbox)
|
|
{
|
|
int d = bbox.dimension();
|
|
for(int i=0; i<d; ++i)
|
|
out << (bbox.min)(i) << " " << (bbox.max)(i) << " ";
|
|
return out;
|
|
}
|
|
|
|
template<typename Container, typename Derived>
|
|
std::istream& operator>>(std::istream& in, Impl::Bbox<Container, Derived>& bbox)
|
|
{
|
|
int d = bbox.dimension();
|
|
for(int i=0; i<d; ++i)
|
|
in >> (bbox.min)(i) >> (bbox.max)(i);
|
|
return in;
|
|
}
|
|
|
|
template<int N, typename T>
|
|
Bbox<Dimension_tag<N>, T> operator+(Bbox<Dimension_tag<N>, T> bbox, const Bbox<Dimension_tag<N>, T>& other)
|
|
{
|
|
bbox += other;
|
|
return bbox;
|
|
}
|
|
|
|
|
|
} // namespace CGAL
|
|
|
|
#endif // CGAL_DDT_BBOX_H
|