2018-02-02 19:26:35 +08:00
|
|
|
use alga::general::{Field, JoinSemilattice, Lattice, MeetSemilattice, Real};
|
2016-12-05 05:44:42 +08:00
|
|
|
use alga::linear::{AffineSpace, EuclideanSpace};
|
|
|
|
|
2019-03-23 21:29:07 +08:00
|
|
|
use crate::base::allocator::Allocator;
|
|
|
|
use crate::base::dimension::DimName;
|
|
|
|
use crate::base::{DefaultAllocator, Scalar, VectorN};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2019-03-23 21:29:07 +08:00
|
|
|
use crate::geometry::Point;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
impl<N: Scalar + Field, D: DimName> AffineSpace for Point<N, D>
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
|
|
|
N: Scalar + Field,
|
|
|
|
DefaultAllocator: Allocator<N, D>,
|
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
type Translation = VectorN<N, D>;
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
impl<N: Real, D: DimName> EuclideanSpace for Point<N, D>
|
2018-10-22 13:00:10 +08:00
|
|
|
where DefaultAllocator: Allocator<N, D>
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
type Coordinates = VectorN<N, D>;
|
2018-02-02 19:26:35 +08:00
|
|
|
type Real = N;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn origin() -> Self {
|
|
|
|
Self::origin()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn coordinates(&self) -> Self::Coordinates {
|
|
|
|
self.coords.clone()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn from_coordinates(coords: Self::Coordinates) -> Self {
|
2018-10-24 02:47:42 +08:00
|
|
|
Self::from(coords)
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn scale_by(&self, n: N) -> Self {
|
|
|
|
self * n
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Ordering
|
|
|
|
*
|
|
|
|
*/
|
2017-08-03 01:37:44 +08:00
|
|
|
impl<N, D: DimName> MeetSemilattice for Point<N, D>
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
|
|
|
N: Scalar + MeetSemilattice,
|
|
|
|
DefaultAllocator: Allocator<N, D>,
|
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
|
|
|
fn meet(&self, other: &Self) -> Self {
|
2019-02-17 05:29:41 +08:00
|
|
|
Self::from(self.coords.meet(&other.coords))
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
impl<N, D: DimName> JoinSemilattice for Point<N, D>
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
|
|
|
N: Scalar + JoinSemilattice,
|
|
|
|
DefaultAllocator: Allocator<N, D>,
|
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
|
|
|
fn join(&self, other: &Self) -> Self {
|
2019-02-17 05:29:41 +08:00
|
|
|
Self::from(self.coords.join(&other.coords))
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
impl<N, D: DimName> Lattice for Point<N, D>
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
|
|
|
N: Scalar + Lattice,
|
|
|
|
DefaultAllocator: Allocator<N, D>,
|
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
|
|
|
fn meet_join(&self, other: &Self) -> (Self, Self) {
|
|
|
|
let (meet, join) = self.coords.meet_join(&other.coords);
|
|
|
|
|
2019-02-17 05:29:41 +08:00
|
|
|
(Self::from(meet), Self::from(join))
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
}
|