libcruft-util/geom/aabb.hpp

99 lines
2.8 KiB
C++
Raw Normal View History

2015-03-07 03:16:57 +11:00
/*
2015-04-13 18:05:28 +10:00
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
2015-03-07 03:16:57 +11:00
*
2015-04-13 18:05:28 +10:00
* http://www.apache.org/licenses/LICENSE-2.0
2015-03-07 03:16:57 +11:00
*
2015-04-13 18:05:28 +10:00
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
2015-03-07 03:16:57 +11:00
*
* Copyright 2015-2017 Danny Robson <danny@nerdcruft.net>
2015-03-07 03:16:57 +11:00
*/
#ifndef CRUFT_UTIL_GEOM_AABB_HPP
#define CRUFT_UTIL_GEOM_AABB_HPP
2015-03-07 03:16:57 +11:00
#include "../point.hpp"
#include "../extent.hpp"
2015-03-07 03:16:57 +11:00
#include <cstdint>
2015-03-07 03:16:57 +11:00
2017-01-05 15:06:49 +11:00
namespace util::geom {
///////////////////////////////////////////////////////////////////////////
2017-08-24 17:27:46 +10:00
/// represents an axis-aligned bounding-box through two opposing corners.
///
/// p0 must be less-than-or-equal to p1. 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;
aabb (point<S,T>, point<S,T>);
2015-03-07 03:16:57 +11:00
extent<S,T> magnitude (void) const;
T diameter (void) const;
2015-03-07 03:16:57 +11:00
/// tests whether a point lies within the region, inclusive of borders
constexpr bool
inclusive (point<S,T> p) const noexcept
{ return all (p0 <= p && p1 >= p); }
2015-04-07 23:10:31 +10:00
2015-04-08 19:00:17 +10:00
point<S,T> closest (point<S,T>) const;
2015-04-08 18:59:45 +10:00
void cover (point<S,T>);
2015-03-12 01:05:47 +11:00
2017-08-24 16:43:54 +10:00
aabb<S,T> operator+ (vector<S,T>) const;
aabb<S,T> operator- (vector<S,T>) const;
2015-04-13 16:44:30 +10:00
::util::point<S,T> p0;
::util::point<S,T> p1;
2015-03-07 03:16:57 +11:00
};
///////////////////////////////////////////////////////////////////////////
template <std::size_t S, typename T>
constexpr bool
operator== (const aabb<S,T> &a, const aabb<S,T> &b) noexcept
{
return a.p0 == b.p0 && a.p1 == b.p1;
}
///////////////////////////////////////////////////////////////////////////
2017-08-24 16:43:54 +10:00
typedef aabb<2,float> aabb2f;
typedef aabb<2,unsigned> aabb2u;
typedef aabb<2,int> aabb2i;
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
///////////////////////////////////////////////////////////////////////////////
#include "./sample.hpp"
#include <random>
namespace util::geom {
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); });
return p * (b.p1 - b.p0) + b.p0.template as<util::vector> ();
}
};
}
2015-10-14 15:32:53 +11:00
2015-03-07 03:16:57 +11:00
#endif