2020-03-21 19:16:46 +08:00
|
|
|
use simba::simd::SimdValue;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2021-04-07 20:29:20 +08:00
|
|
|
use crate::base::VectorN;
|
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-07 20:29:20 +08:00
|
|
|
impl<N: Scalar + SimdValue, const D: usize> SimdValue for Translation<N, D>
|
2020-03-21 19:16:46 +08:00
|
|
|
where
|
|
|
|
N::Element: Scalar,
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
2020-03-21 19:16:46 +08:00
|
|
|
type Element = Translation<N::Element, D>;
|
|
|
|
type SimdBool = N::SimdBool;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
|
|
|
#[inline]
|
2020-03-21 19:16:46 +08:00
|
|
|
fn lanes() -> usize {
|
|
|
|
N::lanes()
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2020-03-21 19:16:46 +08:00
|
|
|
fn splat(val: Self::Element) -> Self {
|
|
|
|
VectorN::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
|
|
|
}
|
|
|
|
}
|