2016-12-05 05:44:42 +08:00
|
|
|
use num::{One, Zero};
|
2018-02-02 19:26:35 +08:00
|
|
|
use alga::general::{ClosedDiv, SubsetOf, SupersetOf};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2018-05-19 23:15:15 +08:00
|
|
|
use base::{DefaultAllocator, Matrix, Scalar, VectorN};
|
|
|
|
use base::dimension::{DimName, DimNameAdd, DimNameSum, U1};
|
|
|
|
use base::allocator::Allocator;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
use geometry::Point;
|
2018-06-09 00:43:39 +08:00
|
|
|
#[cfg(feature = "mint")]
|
|
|
|
use mint;
|
|
|
|
#[cfg(feature = "mint")]
|
|
|
|
use base::dimension::{U2, U3};
|
|
|
|
#[cfg(feature = "mint")]
|
|
|
|
use std::convert::{AsMut, AsRef, From, Into};
|
|
|
|
#[cfg(feature = "mint")]
|
|
|
|
use base::storage::{Storage, StorageMut};
|
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)
|
2018-06-09 00:43:39 +08:00
|
|
|
*
|
|
|
|
* mint::Point <-> Point
|
2016-12-05 05:44:42 +08:00
|
|
|
*/
|
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
impl<N1, N2, D> SubsetOf<Point<N2, D>> for Point<N1, D>
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
|
|
|
D: DimName,
|
|
|
|
N1: Scalar,
|
|
|
|
N2: Scalar + SupersetOf<N1>,
|
|
|
|
DefaultAllocator: Allocator<N2, D> + Allocator<N1, D>,
|
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
2017-08-03 01:37:44 +08:00
|
|
|
fn to_superset(&self) -> Point<N2, D> {
|
|
|
|
Point::from_coordinates(self.coords.to_superset())
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2017-08-03 01:37:44 +08:00
|
|
|
fn is_in_subset(m: &Point<N2, D>) -> bool {
|
2016-12-05 05:44:42 +08:00
|
|
|
// FIXME: is there a way to reuse the `.is_in_subset` from the matrix implementation of
|
|
|
|
// SubsetOf?
|
|
|
|
m.iter().all(|e| e.is_in_subset())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2017-08-03 01:37:44 +08:00
|
|
|
unsafe fn from_superset_unchecked(m: &Point<N2, D>) -> Self {
|
|
|
|
Point::from_coordinates(Matrix::from_superset_unchecked(&m.coords))
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
impl<N1, N2, D> SubsetOf<VectorN<N2, DimNameSum<D, U1>>> for Point<N1, D>
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
|
|
|
D: DimNameAdd<U1>,
|
|
|
|
N1: Scalar,
|
|
|
|
N2: Scalar + Zero + One + ClosedDiv + SupersetOf<N1>,
|
|
|
|
DefaultAllocator: Allocator<N1, D>
|
|
|
|
+ Allocator<N1, DimNameSum<D, U1>>
|
|
|
|
+ Allocator<N2, DimNameSum<D, U1>>
|
|
|
|
+ Allocator<N2, D>,
|
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
2017-08-03 01:37:44 +08:00
|
|
|
fn to_superset(&self) -> VectorN<N2, DimNameSum<D, U1>> {
|
|
|
|
let p: Point<N2, D> = self.to_superset();
|
2016-12-05 05:44:42 +08:00
|
|
|
p.to_homogeneous()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2017-08-03 01:37:44 +08:00
|
|
|
fn is_in_subset(v: &VectorN<N2, DimNameSum<D, U1>>) -> bool {
|
2018-02-02 19:26:35 +08:00
|
|
|
::is_convertible::<_, VectorN<N1, DimNameSum<D, U1>>>(v) && !v[D::dim()].is_zero()
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2017-08-03 01:37:44 +08:00
|
|
|
unsafe fn from_superset_unchecked(v: &VectorN<N2, DimNameSum<D, U1>>) -> Self {
|
2018-02-02 19:26:35 +08:00
|
|
|
let coords = v.fixed_slice::<D, U1>(0, 0) / v[D::dim()];
|
2016-12-05 05:44:42 +08:00
|
|
|
Self::from_coordinates(::convert_unchecked(coords))
|
|
|
|
}
|
|
|
|
}
|
2018-06-09 00:43:39 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "mint")]
|
|
|
|
macro_rules! impl_from_into_mint_1D(
|
|
|
|
($($NRows: ident => $PT:ident, $VT:ident [$SZ: expr]);* $(;)*) => {$(
|
|
|
|
impl<N> From<mint::$PT<N>> for Point<N, $NRows>
|
|
|
|
where N: Scalar,
|
|
|
|
DefaultAllocator: Allocator<N, $NRows> {
|
|
|
|
#[inline]
|
|
|
|
fn from(p: mint::$PT<N>) -> Self {
|
|
|
|
Self {
|
|
|
|
coords: VectorN::from(mint::$VT::from(p)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<N> Into<mint::$PT<N>> for Point<N, $NRows>
|
|
|
|
where N: Scalar {
|
|
|
|
#[inline]
|
|
|
|
fn into(self) -> mint::$PT<N> {
|
|
|
|
let mint_vec: mint::$VT<N> = self.coords.into();
|
|
|
|
mint::$PT::from(mint_vec)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<N> AsRef<mint::$PT<N>> for Point<N, $NRows>
|
|
|
|
where N: Scalar {
|
|
|
|
#[inline]
|
|
|
|
fn as_ref(&self) -> &mint::$PT<N> {
|
|
|
|
unsafe {
|
2018-06-09 02:21:04 +08:00
|
|
|
&*(self.coords.data.ptr() as *const mint::$PT<N>)
|
2018-06-09 00:43:39 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<N> AsMut<mint::$PT<N>> for Point<N, $NRows>
|
|
|
|
where N: Scalar {
|
|
|
|
#[inline]
|
|
|
|
fn as_mut(&mut self) -> &mut mint::$PT<N> {
|
|
|
|
unsafe {
|
2018-06-09 02:21:04 +08:00
|
|
|
&mut *(self.coords.data.ptr_mut() as *mut mint::$PT<N>)
|
2018-06-09 00:43:39 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)*}
|
|
|
|
);
|
|
|
|
|
|
|
|
// Implement for points of dimension 2, 3.
|
|
|
|
#[cfg(feature = "mint")]
|
|
|
|
impl_from_into_mint_1D!(
|
|
|
|
U2 => Point2, Vector2[2];
|
|
|
|
U3 => Point3, Vector3[3];
|
|
|
|
);
|