nalgebra/src/geometry/point_simba.rs

49 lines
1.1 KiB
Rust
Raw Normal View History

2020-03-21 19:16:46 +08:00
use simba::simd::SimdValue;
2021-04-11 17:00:38 +08:00
use crate::base::{OVector, Scalar};
2020-03-21 19:16:46 +08:00
use crate::geometry::Point;
2021-04-11 17:00:38 +08:00
impl<T: Scalar + SimdValue, const D: usize> SimdValue for Point<T, D>
2020-03-21 19:16:46 +08:00
where
2021-04-11 17:00:38 +08:00
T::Element: Scalar,
2020-03-21 19:16:46 +08:00
{
2021-04-11 17:00:38 +08:00
type Element = Point<T::Element, D>;
type SimdBool = T::SimdBool;
2020-03-21 19:16:46 +08:00
#[inline]
fn lanes() -> usize {
2021-04-11 17:00:38 +08:00
T::lanes()
2020-03-21 19:16:46 +08:00
}
#[inline]
fn splat(val: Self::Element) -> Self {
2021-04-11 17:00:38 +08:00
OVector::splat(val.coords).into()
2020-03-21 19:16:46 +08:00
}
#[inline]
fn extract(&self, i: usize) -> Self::Element {
self.coords.extract(i).into()
}
#[inline]
unsafe fn extract_unchecked(&self, i: usize) -> Self::Element {
self.coords.extract_unchecked(i).into()
}
#[inline]
fn replace(&mut self, i: usize, val: Self::Element) {
self.coords.replace(i, val.coords)
}
#[inline]
unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element) {
self.coords.replace_unchecked(i, val.coords)
}
#[inline]
fn select(self, cond: Self::SimdBool, other: Self) -> Self {
self.coords.select(cond, other.coords).into()
}
}