libcruft-util/geom/ops.hpp

123 lines
2.7 KiB
C++
Raw Normal View History

2015-10-14 15:32:53 +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-10-14 15:32:53 +11:00
*
* Copyright 2015-2018 Danny Robson <danny@nerdcruft.net>
2015-10-14 15:32:53 +11:00
*/
#pragma once
2015-10-14 15:32:53 +11:00
#include "./fwd.hpp"
2015-10-14 15:32:53 +11:00
#include "../point.hpp"
#include <type_traits>
2017-01-05 15:06:49 +11:00
///////////////////////////////////////////////////////////////////////////////
namespace cruft::geom {
/// Tests whether any part of two shapes overlap.
///
/// Returns true even if the the edges of the shapes are co-linear.
2015-10-14 15:32:53 +11:00
template <
size_t S,
typename T,
template <size_t,typename> class A,
template <size_t,typename> class B
>
bool
intersects (A<S,T>, B<S,T>);
2018-12-17 14:44:43 +11:00
/// Tests whether the entirety of shape `B` is inclusively contained
/// within the shape `A`.
template <
size_t S,
typename T,
template<size_t,typename> class A,
template<size_t,typename> class B
>
bool covers (A<S,T> const&, B<S,T> const&);
/// Returns a minimum squared distance between two shapes.
2015-10-14 15:32:53 +11:00
template <
size_t S,
typename T,
template <size_t,typename> class A,
template <size_t,typename> class B
>
T
distance2 (A<S,T>, B<S,T>);
// disable distance for point-point arguments given it's already
// explicitly specified in the point header.
2015-10-14 15:32:53 +11:00
template <
size_t S,
typename T,
template <size_t,typename> class A,
template <size_t,typename> class B
2015-10-14 15:32:53 +11:00
>
requires (
!std::is_same_v<cruft::point<S,T>, A<S,T>> &&
!std::is_same_v<cruft::point<S,T>, B<S,T>>
)
2015-10-14 15:32:53 +11:00
T
distance (A<S,T>, B<S,T>);
/// Returns an AABB for the supplied shape.
2015-10-14 15:32:53 +11:00
template <
size_t S,
typename T,
template <size_t,typename> class K
>
2017-08-24 16:43:54 +10:00
aabb<S,T>
2015-10-14 15:32:53 +11:00
bounds (K<S,T>);
/// Returns a bounding AABB for all supplied items
template <typename... Args>
auto
bounds (Args &&...args)
{
return (bounds (args) | ...);
}
/// Returns a maximum distance across a shape.
2015-10-14 15:32:53 +11:00
template <
size_t S,
typename T,
template <size_t,typename> class K
>
T
diameter (K<S,T>);
/// Returns the closest point on a shape to the supplied point.
2015-10-14 15:32:53 +11:00
template <
size_t S,
typename T,
template <size_t,typename> class K
>
point<S,T>
closest (K<S,T>, point<S,T>);
2015-10-14 15:32:53 +11:00
template <
size_t S,
typename T,
template <size_t,typename> class K
>
vector<S,T>
magnitude (K<S,T>);
2015-10-14 15:32:53 +11:00
template <
size_t S,
typename T,
template <size_t,typename> class K
>
K<S,T>
scale (K<S,T>, T);
2017-01-05 15:06:49 +11:00
}