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-11-22 16:49:37 +11:00
|
|
|
#include "aabb.hpp"
|
2016-08-04 17:42:41 +10:00
|
|
|
|
2020-06-18 12:45:27 +10:00
|
|
|
#include "ops.hpp"
|
2017-11-22 16:49:37 +11:00
|
|
|
#include "iostream.hpp"
|
2016-10-11 23:47:57 +11:00
|
|
|
#include "../coord/iostream.hpp"
|
2015-03-07 03:16:57 +11:00
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
using cruft::geom::aabb;
|
2015-03-07 03:16:57 +11:00
|
|
|
|
2017-08-24 17:08:37 +10:00
|
|
|
|
2018-05-21 10:47:30 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
template <>
|
|
|
|
std::array<
|
2018-08-05 14:42:02 +10:00
|
|
|
cruft::point3f,8
|
2018-05-21 10:47:30 +10:00
|
|
|
>
|
|
|
|
aabb<3,float>::vertices (void) const noexcept
|
|
|
|
{
|
|
|
|
return {{
|
|
|
|
{ lo.x, lo.y, lo.z },
|
|
|
|
{ lo.x, lo.y, hi.z },
|
|
|
|
{ lo.x, hi.y, lo.z },
|
|
|
|
{ lo.x, hi.y, hi.z },
|
|
|
|
{ hi.x, lo.y, lo.z },
|
|
|
|
{ hi.x, lo.y, hi.z },
|
|
|
|
{ hi.x, hi.y, lo.z },
|
|
|
|
{ hi.x, hi.y, hi.z },
|
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-06-18 12:45:27 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// Returns the squared minimum distance from the AABB to a point.
|
|
|
|
template <size_t S, typename T>
|
|
|
|
T cruft::geom::distance2 (aabb<S,T> a, point<S,T> b)
|
|
|
|
{
|
|
|
|
auto const clamped = cruft::max (
|
|
|
|
a.lo - b,
|
|
|
|
vector<S,T> (0),
|
|
|
|
b - a.hi
|
|
|
|
);
|
|
|
|
|
|
|
|
return sum (clamped * clamped);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-13 16:44:30 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-08-05 14:42:02 +10:00
|
|
|
namespace cruft::debug {
|
2015-03-07 03:16:57 +11:00
|
|
|
template <size_t S, typename T>
|
2017-08-24 16:43:54 +10:00
|
|
|
struct validator<aabb<S,T>> {
|
|
|
|
static bool is_valid (const aabb<S,T> &b)
|
2015-03-07 03:16:57 +11:00
|
|
|
{
|
2018-03-13 15:42:29 +11:00
|
|
|
return all (b.lo <= b.hi);
|
2015-03-07 03:16:57 +11:00
|
|
|
}
|
|
|
|
};
|
2017-01-05 15:06:49 +11:00
|
|
|
}
|
2015-03-07 03:16:57 +11:00
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
template <size_t S, typename T>
|
|
|
|
std::ostream&
|
2018-08-05 14:42:02 +10:00
|
|
|
cruft::geom::operator<< (std::ostream &os, cruft::geom::aabb<S,T> b)
|
2015-03-07 03:16:57 +11:00
|
|
|
{
|
2018-03-13 15:42:29 +11:00
|
|
|
return os << "[ " << b.lo << ", " << b.hi << " ]";
|
2015-03-07 03:16:57 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2017-01-05 15:06:49 +11:00
|
|
|
#define INSTANTIATE_S_T(S,T) \
|
2018-08-05 14:42:02 +10:00
|
|
|
namespace cruft::geom { template struct aabb<S,T>; } \
|
|
|
|
template bool cruft::debug::is_valid (const aabb<S,T>&); \
|
2020-06-18 12:45:27 +10:00
|
|
|
template std::ostream& cruft::geom::operator<< (std::ostream&, aabb<S,T>); \
|
|
|
|
template T cruft::geom::distance2 (point<S,T>, aabb<S,T>); \
|
|
|
|
template T cruft::geom::distance2 (aabb<S,T>, point<S,T>);
|
2015-03-07 03:16:57 +11:00
|
|
|
#define INSTANTIATE(T) \
|
|
|
|
INSTANTIATE_S_T(2,T) \
|
|
|
|
INSTANTIATE_S_T(3,T)
|
|
|
|
|
2016-10-25 17:47:08 +11:00
|
|
|
INSTANTIATE( int32_t)
|
|
|
|
INSTANTIATE( int64_t)
|
2015-03-07 03:16:57 +11:00
|
|
|
INSTANTIATE(uint32_t)
|
|
|
|
INSTANTIATE(uint64_t)
|
|
|
|
INSTANTIATE(float)
|
|
|
|
INSTANTIATE(double)
|