2015-03-07 03:16:57 +11:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2015-03-07 03:16:57 +11:00
|
|
|
*
|
2017-08-24 17:08:37 +10:00
|
|
|
* Copyright 2015-2017 Danny Robson <danny@nerdcruft.net>
|
2015-03-07 03:16:57 +11:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2017-08-24 17:08:37 +10:00
|
|
|
#ifndef CRUFT_UTIL_GEOM_AABB_HPP
|
|
|
|
#define CRUFT_UTIL_GEOM_AABB_HPP
|
2015-03-07 03:16:57 +11:00
|
|
|
|
2018-03-13 15:42:29 +11:00
|
|
|
#include "../debug.hpp"
|
2015-10-13 18:19:47 +11:00
|
|
|
#include "../extent.hpp"
|
2018-03-13 15:42:29 +11:00
|
|
|
#include "../point.hpp"
|
2015-03-07 03:16:57 +11:00
|
|
|
|
2015-03-23 18:43:22 +11:00
|
|
|
#include <cstdint>
|
2015-03-07 03:16:57 +11:00
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
namespace cruft::geom {
|
2017-08-24 17:08:37 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2017-08-24 17:27:46 +10:00
|
|
|
/// represents an axis-aligned bounding-box through two opposing corners.
|
|
|
|
///
|
2018-03-13 15:42:29 +11:00
|
|
|
/// `lo' must be less-than-or-equal to `hi'. equality is allowed so that
|
|
|
|
/// we can represent zero sized bounding-boxes.
|
2015-03-07 03:16:57 +11:00
|
|
|
template <size_t S, typename T>
|
2017-08-24 16:43:54 +10:00
|
|
|
struct aabb {
|
|
|
|
aabb () = default;
|
2018-03-13 15:42:29 +11:00
|
|
|
aabb (point<S,T> _lo, point<S,T> _hi):
|
|
|
|
lo (_lo),
|
|
|
|
hi (_hi)
|
|
|
|
{
|
|
|
|
CHECK (all (lo <= hi));
|
|
|
|
}
|
2015-03-07 03:16:57 +11:00
|
|
|
|
|
|
|
|
2018-03-13 15:42:29 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
extent<S,T>
|
|
|
|
magnitude (void) const
|
|
|
|
{
|
2018-08-05 14:42:02 +10:00
|
|
|
return (hi - lo).template as<cruft::extent> ();
|
2018-03-13 15:42:29 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
T
|
|
|
|
diameter (void) const
|
|
|
|
{
|
|
|
|
return magnitude ().diameter ();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
2017-08-24 17:11:48 +10:00
|
|
|
/// tests whether a point lies within the region, inclusive of borders
|
2017-08-24 17:21:23 +10:00
|
|
|
constexpr bool
|
|
|
|
inclusive (point<S,T> p) const noexcept
|
2018-03-13 15:42:29 +11:00
|
|
|
{ return all (lo <= p && hi >= p); }
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
point<S,T>
|
|
|
|
closest (point<S,T> query) const
|
|
|
|
{
|
2018-05-03 21:43:48 +10:00
|
|
|
return clamp (query, lo, hi);
|
2018-03-13 15:42:29 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
void cover (point<S,T> p)
|
|
|
|
{
|
|
|
|
lo = min (p, lo);
|
|
|
|
hi = max (p, hi);
|
|
|
|
}
|
2015-04-07 23:10:31 +10:00
|
|
|
|
2015-04-08 19:00:17 +10:00
|
|
|
|
2018-03-13 15:42:29 +11:00
|
|
|
//---------------------------------------------------------------------
|
|
|
|
aabb<S,T> operator+ (vector<S,T> v) const
|
|
|
|
{
|
|
|
|
return { lo + v, hi + v };
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
aabb<S,T> operator- (vector<S,T> v) const
|
|
|
|
{
|
|
|
|
return { lo - v, hi - v };
|
|
|
|
}
|
2015-03-12 01:05:47 +11:00
|
|
|
|
2015-04-13 16:44:30 +10:00
|
|
|
|
2018-05-16 16:21:38 +10:00
|
|
|
/// returns an aabb that covers the supplied point in addition to the
|
|
|
|
/// current aabb area.
|
|
|
|
auto operator| [[nodiscard]] (point<S,T> p) const noexcept
|
|
|
|
{
|
|
|
|
return aabb (
|
2018-08-05 14:42:02 +10:00
|
|
|
cruft::min (lo, p),
|
|
|
|
cruft::max (hi, p)
|
2018-05-16 16:21:38 +10:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
auto& operator|= (point<S,T> p) noexcept
|
|
|
|
{
|
|
|
|
return *this = *this | p;
|
|
|
|
}
|
|
|
|
|
2018-05-18 13:51:19 +10:00
|
|
|
aabb operator| [[nodiscard]] (aabb<S,T> rhs) const noexcept
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
min (lo, rhs.lo),
|
|
|
|
max (hi, rhs.hi)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
std::array<cruft::point<S,T>,cruft::pow(2,S)>
|
2018-05-21 10:47:30 +10:00
|
|
|
vertices (void) const noexcept;
|
|
|
|
|
2018-05-16 16:21:38 +10:00
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
::cruft::point<S,T> lo;
|
|
|
|
::cruft::point<S,T> hi;
|
2015-03-07 03:16:57 +11:00
|
|
|
};
|
|
|
|
|
2015-03-23 18:43:22 +11:00
|
|
|
|
2017-08-24 17:08:37 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
template <std::size_t S, typename T>
|
|
|
|
constexpr bool
|
|
|
|
operator== (const aabb<S,T> &a, const aabb<S,T> &b) noexcept
|
|
|
|
{
|
2018-03-13 15:42:29 +11:00
|
|
|
return a.lo == b.lo && a.hi == b.hi;
|
2017-08-24 17:08:37 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2017-08-24 16:43:54 +10:00
|
|
|
typedef aabb<2,float> aabb2f;
|
|
|
|
typedef aabb<2,unsigned> aabb2u;
|
|
|
|
typedef aabb<2,int> aabb2i;
|
2015-03-23 18:43:22 +11:00
|
|
|
|
2017-08-24 16:43:54 +10:00
|
|
|
typedef aabb<3,float> aabb3f;
|
|
|
|
typedef aabb<3,unsigned> aabb3u;
|
|
|
|
typedef aabb<3,int> aabb3i;
|
2017-01-05 15:06:49 +11:00
|
|
|
}
|
2015-03-07 03:16:57 +11:00
|
|
|
|
2017-08-29 12:19:58 +10:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "./sample.hpp"
|
|
|
|
|
|
|
|
#include <random>
|
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
namespace cruft::geom {
|
2017-08-29 12:19:58 +10:00
|
|
|
template <size_t S, typename T, typename G>
|
|
|
|
struct sampler<S,T,aabb,G> {
|
|
|
|
static point<S,T>
|
|
|
|
fn (aabb<S,T> b, G &g)
|
|
|
|
{
|
|
|
|
std::uniform_real_distribution<T> d;
|
|
|
|
|
|
|
|
point<S,T> p;
|
|
|
|
std::generate (p.begin (), p.end (), [&] (void) { return d (g); });
|
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
return p * (b.hi - b.lo) + b.lo.template as<cruft::vector> ();
|
2017-08-29 12:19:58 +10:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2015-10-14 15:32:53 +11:00
|
|
|
|
2015-03-07 03:16:57 +11:00
|
|
|
#endif
|