2018-10-13 16:25:34 +08:00
|
|
|
use num::{One, Zero};
|
2020-03-21 19:16:46 +08:00
|
|
|
use simba::scalar::{ClosedDiv, SubsetOf, SupersetOf};
|
2020-04-05 23:15:43 +08:00
|
|
|
use simba::simd::PrimitiveSimdValue;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2019-03-23 21:29:07 +08:00
|
|
|
use crate::base::allocator::Allocator;
|
2021-04-07 20:29:20 +08:00
|
|
|
use crate::base::dimension::{DimNameAdd, DimNameSum, U1};
|
2021-04-11 17:00:38 +08:00
|
|
|
use crate::base::{Const, DefaultAllocator, Matrix, OVector, Scalar};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2019-03-23 21:29:07 +08:00
|
|
|
use crate::geometry::Point;
|
2021-03-06 19:20:38 +08:00
|
|
|
|
2016-12-05 05:44:42 +08:00
|
|
|
/*
|
|
|
|
* This file provides the following conversions:
|
|
|
|
* =============================================
|
|
|
|
*
|
2017-08-03 01:37:44 +08:00
|
|
|
* Point -> Point
|
|
|
|
* Point -> Vector (homogeneous)
|
2016-12-05 05:44:42 +08:00
|
|
|
*/
|
|
|
|
|
2021-04-11 17:00:38 +08:00
|
|
|
impl<T1, T2, const D: usize> SubsetOf<Point<T2, D>> for Point<T1, D>
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
2021-04-11 17:00:38 +08:00
|
|
|
T1: Scalar,
|
|
|
|
T2: Scalar + SupersetOf<T1>,
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
2021-04-11 17:00:38 +08:00
|
|
|
fn to_superset(&self) -> Point<T2, D> {
|
2018-10-24 02:47:42 +08:00
|
|
|
Point::from(self.coords.to_superset())
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2021-04-11 17:00:38 +08:00
|
|
|
fn is_in_subset(m: &Point<T2, D>) -> bool {
|
2020-11-15 23:57:49 +08:00
|
|
|
// TODO: is there a way to reuse the `.is_in_subset` from the matrix implementation of
|
2016-12-05 05:44:42 +08:00
|
|
|
// SubsetOf?
|
|
|
|
m.iter().all(|e| e.is_in_subset())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2021-04-11 17:00:38 +08:00
|
|
|
fn from_superset_unchecked(m: &Point<T2, D>) -> Self {
|
2019-02-17 05:29:41 +08:00
|
|
|
Self::from(Matrix::from_superset_unchecked(&m.coords))
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-11 17:00:38 +08:00
|
|
|
impl<T1, T2, const D: usize> SubsetOf<OVector<T2, DimNameSum<Const<D>, U1>>> for Point<T1, D>
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
2021-04-07 20:29:20 +08:00
|
|
|
Const<D>: DimNameAdd<U1>,
|
2021-04-11 17:00:38 +08:00
|
|
|
T1: Scalar,
|
|
|
|
T2: Scalar + Zero + One + ClosedDiv + SupersetOf<T1>,
|
2021-04-07 20:29:20 +08:00
|
|
|
DefaultAllocator:
|
2021-04-11 17:00:38 +08:00
|
|
|
Allocator<T1, DimNameSum<Const<D>, U1>> + Allocator<T2, DimNameSum<Const<D>, U1>>,
|
|
|
|
// + Allocator<T1, D>
|
|
|
|
// + Allocator<T2, D>,
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
2021-04-11 17:00:38 +08:00
|
|
|
fn to_superset(&self) -> OVector<T2, DimNameSum<Const<D>, U1>> {
|
|
|
|
let p: Point<T2, D> = self.to_superset();
|
2016-12-05 05:44:42 +08:00
|
|
|
p.to_homogeneous()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2021-04-11 17:00:38 +08:00
|
|
|
fn is_in_subset(v: &OVector<T2, DimNameSum<Const<D>, U1>>) -> bool {
|
|
|
|
crate::is_convertible::<_, OVector<T1, DimNameSum<Const<D>, U1>>>(v) && !v[D].is_zero()
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2021-04-11 17:00:38 +08:00
|
|
|
fn from_superset_unchecked(v: &OVector<T2, DimNameSum<Const<D>, U1>>) -> Self {
|
|
|
|
let coords = v.fixed_slice::<D, 1>(0, 0) / v[D].inlined_clone();
|
2018-10-24 02:47:42 +08:00
|
|
|
Self {
|
2020-03-21 19:16:46 +08:00
|
|
|
coords: crate::convert_unchecked(coords),
|
2018-10-24 02:47:42 +08:00
|
|
|
}
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
}
|
2018-06-09 00:43:39 +08:00
|
|
|
|
2021-04-11 17:00:38 +08:00
|
|
|
impl<T: Scalar + Zero + One, const D: usize> From<Point<T, D>>
|
|
|
|
for OVector<T, DimNameSum<Const<D>, U1>>
|
2018-10-13 16:25:34 +08:00
|
|
|
where
|
2021-04-07 20:29:20 +08:00
|
|
|
Const<D>: DimNameAdd<U1>,
|
2021-04-11 17:00:38 +08:00
|
|
|
DefaultAllocator: Allocator<T, DimNameSum<Const<D>, U1>>,
|
2018-10-13 16:25:34 +08:00
|
|
|
{
|
|
|
|
#[inline]
|
2021-04-11 17:00:38 +08:00
|
|
|
fn from(t: Point<T, D>) -> Self {
|
2018-10-13 16:25:34 +08:00
|
|
|
t.to_homogeneous()
|
|
|
|
}
|
|
|
|
}
|
2018-10-24 02:47:42 +08:00
|
|
|
|
2021-04-27 19:17:12 +08:00
|
|
|
impl<T: Scalar, const D: usize> From<[T; D]> for Point<T, D> {
|
|
|
|
#[inline]
|
|
|
|
fn from(coords: [T; D]) -> Self {
|
|
|
|
Point {
|
|
|
|
coords: coords.into(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Scalar, const D: usize> Into<[T; D]> for Point<T, D> {
|
|
|
|
#[inline]
|
|
|
|
fn into(self) -> [T; D] {
|
|
|
|
self.coords.into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-11 17:00:38 +08:00
|
|
|
impl<T: Scalar, const D: usize> From<OVector<T, Const<D>>> for Point<T, D> {
|
2018-10-24 02:47:42 +08:00
|
|
|
#[inline]
|
2021-04-11 17:00:38 +08:00
|
|
|
fn from(coords: OVector<T, Const<D>>) -> Self {
|
2020-03-21 19:16:46 +08:00
|
|
|
Point { coords }
|
2018-10-24 02:47:42 +08:00
|
|
|
}
|
|
|
|
}
|
2020-03-23 16:16:01 +08:00
|
|
|
|
2021-04-11 17:00:38 +08:00
|
|
|
impl<T: Scalar + Copy + PrimitiveSimdValue, const D: usize> From<[Point<T::Element, D>; 2]>
|
|
|
|
for Point<T, D>
|
2020-03-23 16:16:01 +08:00
|
|
|
where
|
2021-04-11 17:00:38 +08:00
|
|
|
T: From<[<T as simba::simd::SimdValue>::Element; 2]>,
|
|
|
|
T::Element: Scalar + Copy,
|
|
|
|
<DefaultAllocator as Allocator<T::Element, Const<D>>>::Buffer: Copy,
|
2020-03-23 16:16:01 +08:00
|
|
|
{
|
|
|
|
#[inline]
|
2021-04-11 17:00:38 +08:00
|
|
|
fn from(arr: [Point<T::Element, D>; 2]) -> Self {
|
|
|
|
Self::from(OVector::from([arr[0].coords, arr[1].coords]))
|
2020-03-23 16:16:01 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-11 17:00:38 +08:00
|
|
|
impl<T: Scalar + Copy + PrimitiveSimdValue, const D: usize> From<[Point<T::Element, D>; 4]>
|
|
|
|
for Point<T, D>
|
2020-03-23 16:16:01 +08:00
|
|
|
where
|
2021-04-11 17:00:38 +08:00
|
|
|
T: From<[<T as simba::simd::SimdValue>::Element; 4]>,
|
|
|
|
T::Element: Scalar + Copy,
|
|
|
|
<DefaultAllocator as Allocator<T::Element, Const<D>>>::Buffer: Copy,
|
2020-03-23 16:16:01 +08:00
|
|
|
{
|
|
|
|
#[inline]
|
2021-04-11 17:00:38 +08:00
|
|
|
fn from(arr: [Point<T::Element, D>; 4]) -> Self {
|
|
|
|
Self::from(OVector::from([
|
2020-03-23 16:16:01 +08:00
|
|
|
arr[0].coords,
|
|
|
|
arr[1].coords,
|
|
|
|
arr[2].coords,
|
|
|
|
arr[3].coords,
|
|
|
|
]))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-11 17:00:38 +08:00
|
|
|
impl<T: Scalar + Copy + PrimitiveSimdValue, const D: usize> From<[Point<T::Element, D>; 8]>
|
|
|
|
for Point<T, D>
|
2020-03-23 16:16:01 +08:00
|
|
|
where
|
2021-04-11 17:00:38 +08:00
|
|
|
T: From<[<T as simba::simd::SimdValue>::Element; 8]>,
|
|
|
|
T::Element: Scalar + Copy,
|
|
|
|
<DefaultAllocator as Allocator<T::Element, Const<D>>>::Buffer: Copy,
|
2020-03-23 16:16:01 +08:00
|
|
|
{
|
|
|
|
#[inline]
|
2021-04-11 17:00:38 +08:00
|
|
|
fn from(arr: [Point<T::Element, D>; 8]) -> Self {
|
|
|
|
Self::from(OVector::from([
|
2020-03-23 16:16:01 +08:00
|
|
|
arr[0].coords,
|
|
|
|
arr[1].coords,
|
|
|
|
arr[2].coords,
|
|
|
|
arr[3].coords,
|
|
|
|
arr[4].coords,
|
|
|
|
arr[5].coords,
|
|
|
|
arr[6].coords,
|
|
|
|
arr[7].coords,
|
|
|
|
]))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-11 17:00:38 +08:00
|
|
|
impl<T: Scalar + Copy + PrimitiveSimdValue, const D: usize> From<[Point<T::Element, D>; 16]>
|
|
|
|
for Point<T, D>
|
2020-03-23 16:16:01 +08:00
|
|
|
where
|
2021-04-11 17:00:38 +08:00
|
|
|
T: From<[<T as simba::simd::SimdValue>::Element; 16]>,
|
|
|
|
T::Element: Scalar + Copy,
|
|
|
|
<DefaultAllocator as Allocator<T::Element, Const<D>>>::Buffer: Copy,
|
2020-03-23 16:16:01 +08:00
|
|
|
{
|
|
|
|
#[inline]
|
2021-04-11 17:00:38 +08:00
|
|
|
fn from(arr: [Point<T::Element, D>; 16]) -> Self {
|
|
|
|
Self::from(OVector::from([
|
2020-03-23 16:16:01 +08:00
|
|
|
arr[0].coords,
|
|
|
|
arr[1].coords,
|
|
|
|
arr[2].coords,
|
|
|
|
arr[3].coords,
|
|
|
|
arr[4].coords,
|
|
|
|
arr[5].coords,
|
|
|
|
arr[6].coords,
|
|
|
|
arr[7].coords,
|
|
|
|
arr[8].coords,
|
|
|
|
arr[9].coords,
|
|
|
|
arr[10].coords,
|
|
|
|
arr[11].coords,
|
|
|
|
arr[12].coords,
|
|
|
|
arr[13].coords,
|
|
|
|
arr[14].coords,
|
|
|
|
arr[15].coords,
|
|
|
|
]))
|
|
|
|
}
|
|
|
|
}
|