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