use crate::bool::simd_alias::BVec3A;
use crate::f32::simd_alias::{UnitVec3A, Vec4};
use crate::{Vec2, Vec3};
#[cfg(not(target_arch = "spirv"))]
use core::fmt;
use core::iter::{Product, Sum};
use core::ops::*;
use core::arch::wasm32::*;
use crate::nums::*;
use auto_ops_det::impl_op_ex;
use core::ops;
union UnionCast {
a: [f32; 4],
v: Vec3A,
}
#[inline]
pub const fn vec3a(x: f32, y: f32, z: f32) -> Vec3A {
Vec3A::new(x, y, z)
}
#[derive(Clone, Copy)]
#[repr(transparent)]
pub struct Vec3A(pub(crate) v128);
impl Vec3A {
pub const ZERO: Self = Self::splat(0.0_f32);
pub const ONE: Self = Self::splat(1.0_f32);
pub const NEG_ONE: Self = Self::splat(-1.0_f32);
pub const NAN: Self = Self::splat(f32::NAN);
pub const X: Self = Self::new(1.0_f32, 0.0_f32, 0.0_f32);
pub const Y: Self = Self::new(0.0_f32, 1.0_f32, 0.0_f32);
pub const Z: Self = Self::new(0.0_f32, 0.0_f32, 1.0_f32);
pub const NEG_X: Self = Self::new(-1.0_f32, 0.0_f32, 0.0_f32);
pub const NEG_Y: Self = Self::new(0.0_f32, -1.0_f32, 0.0_f32);
pub const NEG_Z: Self = Self::new(0.0_f32, 0.0_f32, -1.0_f32);
pub const AXES: [Self; 3] = [Self::X, Self::Y, Self::Z];
#[inline]
pub const fn new(x: f32, y: f32, z: f32) -> Self {
Self(f32x4(x, y, z, z))
}
#[inline]
pub const fn splat(v: f32) -> Self {
unsafe { UnionCast { a: [v; 4] }.v }
}
#[inline]
pub fn select(mask: BVec3A, if_true: Self, if_false: Self) -> Self {
Self(v128_bitselect(if_true.0, if_false.0, mask.0))
}
#[inline]
pub const fn from_array(a: [f32; 3]) -> Self {
Self::new(a[0], a[1], a[2])
}
#[inline]
pub const fn to_array(&self) -> [f32; 3] {
unsafe { *(self as *const Vec3A as *const [f32; 3]) }
}
#[inline]
pub const fn from_slice(slice: &[f32]) -> Self {
Self::new(slice[0], slice[1], slice[2])
}
#[inline]
pub fn write_to_slice(self, slice: &mut [f32]) {
slice[0] = self.x;
slice[1] = self.y;
slice[2] = self.z;
}
#[allow(dead_code)]
#[inline]
pub(crate) fn from_vec4(v: Vec4) -> Self {
Self(v.0)
}
#[inline]
pub fn extend(self, w: f32) -> Vec4 {
Vec4::new(self.x, self.y, self.z, w)
}
#[inline]
pub fn truncate(self) -> Vec2 {
use crate::swizzles::Vec3Swizzles;
self.xy()
}
#[inline]
pub(crate) fn dot(self, rhs: Self) -> f32 {
crate::wasm32::dot3(self.0, rhs.0)
}
#[inline]
pub(crate) fn cross(self, rhs: Self) -> Self {
let lhszxy = i32x4_shuffle::<2, 0, 1, 1>(self.0, self.0);
let rhszxy = i32x4_shuffle::<2, 0, 1, 1>(rhs.0, rhs.0);
let lhszxy_rhs = f32x4_mul(lhszxy, rhs.0);
let rhszxy_lhs = f32x4_mul(rhszxy, self.0);
let sub = f32x4_sub(lhszxy_rhs, rhszxy_lhs);
Self(i32x4_shuffle::<2, 0, 1, 1>(sub, sub))
}
#[inline]
pub fn min(self, rhs: Self) -> Self {
Self(f32x4_pmin(self.0, rhs.0))
}
#[inline]
pub fn max(self, rhs: Self) -> Self {
Self(f32x4_pmax(self.0, rhs.0))
}
#[inline]
pub fn clamp(self, min: Self, max: Self) -> Self {
glam_assert!(min.cmple(max).all(), "clamp: expected min <= max");
self.max(min).min(max)
}
#[inline]
pub fn min_element(self) -> f32 {
let v = self.0;
let v = f32x4_pmin(v, i32x4_shuffle::<2, 2, 1, 1>(v, v));
let v = f32x4_pmin(v, i32x4_shuffle::<1, 0, 0, 0>(v, v));
f32x4_extract_lane::<0>(v)
}
#[inline]
pub fn max_element(self) -> f32 {
let v = self.0;
let v = f32x4_pmax(v, i32x4_shuffle::<2, 2, 0, 0>(v, v));
let v = f32x4_pmax(v, i32x4_shuffle::<1, 0, 0, 0>(v, v));
f32x4_extract_lane::<0>(v)
}
#[inline]
pub fn cmpeq(self, rhs: Self) -> BVec3A {
BVec3A(f32x4_eq(self.0, rhs.0))
}
#[inline]
pub fn cmpne(self, rhs: Self) -> BVec3A {
BVec3A(f32x4_ne(self.0, rhs.0))
}
#[inline]
pub fn cmpge(self, rhs: Self) -> BVec3A {
BVec3A(f32x4_ge(self.0, rhs.0))
}
#[inline]
pub fn cmpgt(self, rhs: Self) -> BVec3A {
BVec3A(f32x4_gt(self.0, rhs.0))
}
#[inline]
pub fn cmple(self, rhs: Self) -> BVec3A {
BVec3A(f32x4_le(self.0, rhs.0))
}
#[inline]
pub fn cmplt(self, rhs: Self) -> BVec3A {
BVec3A(f32x4_lt(self.0, rhs.0))
}
#[inline]
pub fn abs(self) -> Self {
Self(f32x4_abs(self.0))
}
#[inline]
pub fn signum(self) -> Self {
let mask = self.cmpge(Self::ZERO);
let result = Self::select(mask, Self::ONE, Self::NEG_ONE);
let mask = self.is_nan_mask();
Self::select(mask, self, result)
}
#[inline]
pub fn is_finite(self) -> bool {
self.x.is_finite() && self.y.is_finite() && self.z.is_finite()
}
#[inline]
pub fn is_nan(self) -> bool {
self.is_nan_mask().any()
}
#[inline]
pub fn is_nan_mask(self) -> BVec3A {
BVec3A(f32x4_ne(self.0, self.0))
}
#[inline]
pub fn round(self) -> Self {
Self(f32x4_nearest(self.0))
}
#[inline]
pub fn floor(self) -> Self {
Self(f32x4_floor(self.0))
}
#[inline]
pub fn ceil(self) -> Self {
Self(f32x4_ceil(self.0))
}
#[inline]
pub fn fract(self) -> Self {
self - self.floor()
}
#[inline]
pub fn exp(self) -> Self {
Self::new(self.x.expf(), self.y.expf(), self.z.expf())
}
#[inline]
pub fn powf(self, n: f32) -> Self {
Self::new(self.x.powff(n), self.y.powff(n), self.z.powff(n))
}
#[inline]
pub fn recip(self) -> Self {
Self(f32x4_div(Self::ONE.0, self.0))
}
#[doc(alias = "magnitude")]
#[inline]
pub fn length(self) -> f32 {
self.dot(self).sqrtf()
}
#[doc(alias = "magnitude2")]
#[inline]
pub fn length_squared(self) -> f32 {
self.dot(self)
}
#[inline]
pub fn length_recip(self) -> f32 {
self.length().recip()
}
#[inline]
pub fn distance(self, rhs: Self) -> f32 {
(self - rhs).length()
}
#[inline]
pub fn distance_squared(self, rhs: Self) -> f32 {
(self - rhs).length_squared()
}
#[must_use]
#[inline]
pub fn normalize(self) -> Self {
let length_wide = f32x4_sqrt(crate::wasm32::dot3_into_v128(self.0, self.0));
#[cfg(any(
all(debug_assertions, feature = "debug-glam-assert"),
feature = "glam-assert"
))]
let length = f32x4_extract_lane::<0>(length_wide);
glam_assert!(length.gt(&0.0_f32), "Trying to normalize {:?}", self);
glam_assert!(self.is_finite(), "Trying to normalize {:?}", self);
glam_assert!(length.is_finite(), "Trying to normalize {:?}", self);
#[allow(clippy::let_and_return)]
let normalized = Self(f32x4_div(self.0, length_wide));
glam_assert!(normalized.is_finite(), "Trying to normalize {:?}", self);
normalized
}
#[must_use]
#[inline]
pub fn normalize_and_length(self) -> (Self, f32) {
let length_wide = f32x4_sqrt(crate::wasm32::dot3_into_v128(self.0, self.0));
let length = f32x4_extract_lane::<0>(length_wide);
glam_assert!(length.gt(&0.0_f32), "Trying to normalize {:?}", self);
glam_assert!(self.is_finite(), "Trying to normalize {:?}", self);
glam_assert!(length.is_finite(), "Trying to normalize {:?}", self);
#[allow(clippy::let_and_return)]
let normalized = Self(f32x4_div(self.0, length_wide));
glam_assert!(normalized.is_finite(), "Trying to normalize {:?}", self);
(normalized, length)
}
#[must_use]
#[inline]
pub fn normalize_to_unit(self) -> UnitVec3A {
self.normalize().as_unit_vec3a_unchecked()
}
#[must_use]
#[inline]
pub fn normalize_to_unit_and_length(self) -> (UnitVec3A, f32) {
let res = self.normalize_and_length();
(res.0.as_unit_vec3a_unchecked(), res.1)
}
#[must_use]
#[inline]
pub fn try_normalize(self, min_len: f32) -> Option<Self> {
let length = self.length();
if length.is_finite() && length > min_len {
Some(self * length.recip())
} else {
None
}
}
#[must_use]
#[inline]
pub fn try_normalize_to_unit(self, min_len: f32) -> Option<UnitVec3A> {
let length = self.length();
if length.is_finite() && length > min_len {
Some((self * length.recip()).as_unit_vec3a_unchecked())
} else {
None
}
}
#[must_use]
#[inline]
pub fn try_normalize_to_unit_and_length(self, min_len: f32) -> Option<(UnitVec3A, f32)> {
let length = self.length();
if length.is_finite() && length > min_len {
Some(((self * length.recip()).as_unit_vec3a_unchecked(), length))
} else {
None
}
}
#[must_use]
#[inline]
pub fn normalize_or_zero(self) -> Self {
let rcp = self.length_recip();
if rcp.is_finite() && rcp > 0.0 {
self * rcp
} else {
Self::ZERO
}
}
#[inline]
pub fn is_normalized(self) -> bool {
(self.length_squared() - 1.0_f32).absf() <= 1e-4
}
#[must_use]
#[inline]
pub fn project_onto(self, rhs: Self) -> Self {
let other_len_sq_rcp = rhs.dot(rhs).recip();
glam_assert!(
other_len_sq_rcp.is_finite(),
"Trying to project onto infinite rhs = {:?}",
rhs
);
rhs * self.dot(rhs) * other_len_sq_rcp
}
#[must_use]
#[inline]
pub fn reject_from(self, rhs: Self) -> Self {
self - self.project_onto(rhs)
}
#[must_use]
#[inline]
pub fn project_onto_normalized(self, rhs: UnitVec3A) -> Self {
rhs.as_vec3a() * self.dot(rhs.as_vec3a())
}
#[must_use]
#[inline]
pub fn reject_from_normalized(self, rhs: UnitVec3A) -> Self {
self - self.project_onto_normalized(rhs)
}
#[doc(alias = "mix")]
#[inline]
pub fn lerp(self, rhs: Self, s: f32) -> Self {
self + ((rhs - self) * s)
}
#[inline]
pub fn abs_diff_eq(self, rhs: Self, max_abs_diff: f32) -> bool {
self.sub(rhs).abs().cmple(Self::splat(max_abs_diff)).all()
}
#[inline]
pub fn clamp_length(self, min: f32, max: f32) -> Self {
glam_assert!(min <= max);
let length_sq = self.length_squared();
if length_sq < min * min {
self * (length_sq.sqrtf().recip() * min)
} else if length_sq > max * max {
self * (length_sq.sqrtf().recip() * max)
} else {
self
}
}
#[inline]
pub fn clamp_length_max(self, max: f32) -> Self {
let length_sq = self.length_squared();
if length_sq > max * max {
self * (length_sq.sqrtf().recip() * max)
} else {
self
}
}
#[inline]
pub fn clamp_length_min(self, min: f32) -> Self {
let length_sq = self.length_squared();
if length_sq < min * min {
self * (length_sq.sqrtf().recip() * min)
} else {
self
}
}
#[inline]
pub fn mul_add(self, a: Self, b: Self) -> Self {
Self::new(
self.x.mul_addf(a.x, b.x),
self.y.mul_addf(a.y, b.y),
self.z.mul_addf(a.z, b.z),
)
}
#[inline]
pub fn angle_between(self, rhs: Self) -> f32 {
use crate::FloatEx;
self.dot(rhs)
.div(self.length_squared().mul(rhs.length_squared()).sqrtf())
.acos_approx()
}
#[inline]
pub fn any_orthogonal_vector(&self) -> Self {
if self.x.absf() > self.y.absf() {
Self::new(-self.z, 0.0, self.x) } else {
Self::new(0.0, self.z, -self.y) }
}
#[inline]
pub fn as_dvec3(&self) -> crate::DVec3 {
crate::DVec3::new(self.x as f64, self.y as f64, self.z as f64)
}
#[inline]
pub fn as_ivec3(&self) -> crate::IVec3 {
crate::IVec3::new(self.x as i32, self.y as i32, self.z as i32)
}
#[inline]
pub fn as_uvec3(&self) -> crate::UVec3 {
crate::UVec3::new(self.x as u32, self.y as u32, self.z as u32)
}
}
impl Default for Vec3A {
#[inline]
fn default() -> Self {
Self::ZERO
}
}
impl PartialEq for Vec3A {
#[inline]
fn eq(&self, rhs: &Self) -> bool {
self.cmpeq(*rhs).all()
}
}
impl_op_ex!(/ |a: &Vec3A, b: &Vec3A| -> Vec3A {
Vec3A(f32x4_div(a.0, b.0))
});
impl_op_ex!(/= |a: &mut Vec3A, b: &Vec3A| {
a.0 = f32x4_div(a.0, b.0);
});
impl_op_ex!(/ |a: &Vec3A, b: &f32| -> Vec3A {
Vec3A(f32x4_div(a.0, f32x4_splat(*b)))
});
impl_op_ex!(/= |a: &mut Vec3A, b: &f32| {
a.0 = f32x4_div(a.0, f32x4_splat(*b));
});
impl_op_ex!(/ |a: &f32, b: &Vec3A| -> Vec3A {
Vec3A(f32x4_div(f32x4_splat(*a), b.0))
});
impl_op_ex!(*|a: &Vec3A, b: &Vec3A| -> Vec3A { Vec3A(f32x4_mul(a.0, b.0)) });
impl_op_ex!(*= |a: &mut Vec3A, b: &Vec3A| {
a.0 = f32x4_mul(a.0, b.0);
});
impl_op_ex!(*|a: &Vec3A, b: &f32| -> Vec3A { Vec3A(f32x4_mul(a.0, f32x4_splat(*b))) });
impl_op_ex!(*= |a: &mut Vec3A, b: &f32| {
a.0 = f32x4_mul(a.0, f32x4_splat(*b));
});
impl_op_ex!(*|a: &f32, b: &Vec3A| -> Vec3A { Vec3A(f32x4_mul(f32x4_splat(*a), b.0)) });
impl_op_ex!(+ |a: &Vec3A, b: &Vec3A| -> Vec3A {
Vec3A(f32x4_add(a.0, b.0))
});
impl_op_ex!(+= |a: &mut Vec3A, b: &Vec3A| {
a.0 = f32x4_add(a.0, b.0);
});
impl_op_ex!(+ |a: &Vec3A, b: &f32| -> Vec3A {
Vec3A(f32x4_add(a.0, f32x4_splat(*b)))
});
impl_op_ex!(+= |a: &mut Vec3A, b: &f32| {
a.0 = f32x4_add(a.0, f32x4_splat(*b));
});
impl_op_ex!(+ |a: &f32, b: &Vec3A| -> Vec3A {
Vec3A(f32x4_add(f32x4_splat(*a), b.0))
});
impl_op_ex!(-|a: &Vec3A, b: &Vec3A| -> Vec3A { Vec3A(f32x4_sub(a.0, b.0)) });
impl_op_ex!(-= |a: &mut Vec3A, b: &Vec3A| {
a.0 = f32x4_sub(a.0, b.0);
});
impl_op_ex!(-|a: &Vec3A, b: &f32| -> Vec3A { Vec3A(f32x4_sub(a.0, f32x4_splat(*b))) });
impl_op_ex!(-= |a: &mut Vec3A, b: &f32| {
a.0 = f32x4_sub(a.0, f32x4_splat(*b));
});
impl_op_ex!(-|a: &f32, b: &Vec3A| -> Vec3A { Vec3A(f32x4_sub(f32x4_splat(*a), b.0)) });
impl_op_ex!(% |a: &Vec3A, b: &Vec3A| -> Vec3A {
let n = f32x4_floor(f32x4_div(a.0, b.0));
Vec3A(f32x4_sub(a.0, f32x4_mul(n, b.0)))
});
impl_op_ex!(%= |a: &mut Vec3A, b: &Vec3A| {
*a = a.rem(*b)
});
impl_op_ex!(% |a: &Vec3A, b: &f32| -> Vec3A {
a.rem(Vec3A::splat(*b))
});
impl_op_ex!(%= |a: &mut Vec3A, b: &f32| {
*a = a.rem(Vec3A::splat(*b))
});
impl_op_ex!(% |a: &f32, b: &Vec3A| -> Vec3A {
Vec3A::splat(*a).rem(b)
});
impl<'a> Sum<&'a Self> for Vec3A {
#[inline]
fn sum<I>(iter: I) -> Self
where
I: Iterator<Item = &'a Self>,
{
iter.fold(Self::ZERO, |a, &b| Self::add(a, b))
}
}
impl<'a> Product<&'a Self> for Vec3A {
#[inline]
fn product<I>(iter: I) -> Self
where
I: Iterator<Item = &'a Self>,
{
iter.fold(Self::ONE, |a, &b| Self::mul(a, b))
}
}
impl Neg for Vec3A {
type Output = Self;
#[inline]
fn neg(self) -> Self {
Self(f32x4_neg(self.0))
}
}
impl Index<usize> for Vec3A {
type Output = f32;
#[inline]
fn index(&self, index: usize) -> &Self::Output {
match index {
0 => &self.x,
1 => &self.y,
2 => &self.z,
_ => panic!("index out of bounds"),
}
}
}
impl IndexMut<usize> for Vec3A {
#[inline]
fn index_mut(&mut self, index: usize) -> &mut Self::Output {
match index {
0 => &mut self.x,
1 => &mut self.y,
2 => &mut self.z,
_ => panic!("index out of bounds"),
}
}
}
#[cfg(not(target_arch = "spirv"))]
impl fmt::Display for Vec3A {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "[{}, {}, {}]", self.x, self.y, self.z)
}
}
#[cfg(not(target_arch = "spirv"))]
impl fmt::Debug for Vec3A {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_tuple(stringify!(Vec3A))
.field(&self.x)
.field(&self.y)
.field(&self.z)
.finish()
}
}
impl From<Vec3A> for v128 {
#[inline]
fn from(t: Vec3A) -> Self {
t.0
}
}
impl From<v128> for Vec3A {
#[inline]
fn from(t: v128) -> Self {
Self(t)
}
}
impl From<[f32; 3]> for Vec3A {
#[inline]
fn from(a: [f32; 3]) -> Self {
Self::new(a[0], a[1], a[2])
}
}
impl From<Vec3A> for [f32; 3] {
#[inline]
fn from(v: Vec3A) -> Self {
unsafe { *(&v.0 as *const v128 as *const [f32; 3]) }
}
}
impl From<(f32, f32, f32)> for Vec3A {
#[inline]
fn from(t: (f32, f32, f32)) -> Self {
Self::new(t.0, t.1, t.2)
}
}
impl From<Vec3A> for (f32, f32, f32) {
#[inline]
fn from(v: Vec3A) -> Self {
unsafe { *(&v.0 as *const v128 as *const Self) }
}
}
impl From<Vec3> for Vec3A {
#[inline]
fn from(v: Vec3) -> Self {
Self::new(v.x, v.y, v.z)
}
}
impl From<Vec4> for Vec3A {
#[inline]
fn from(v: Vec4) -> Self {
Self(v.0)
}
}
impl From<Vec3A> for Vec3 {
#[inline]
fn from(v: Vec3A) -> Self {
unsafe { *(&v.0 as *const v128 as *const Self) }
}
}
impl From<(Vec2, f32)> for Vec3A {
#[inline]
fn from((v, z): (Vec2, f32)) -> Self {
Self::new(v.x, v.y, z)
}
}
impl Deref for Vec3A {
type Target = crate::deref::Vec3<f32>;
#[inline]
fn deref(&self) -> &Self::Target {
unsafe { &*(self as *const Self).cast() }
}
}
impl DerefMut for Vec3A {
#[inline]
fn deref_mut(&mut self) -> &mut Self::Target {
unsafe { &mut *(self as *mut Self).cast() }
}
}
#[cfg(not(target_arch = "spirv"))]
impl AsRef<[f32; 3]> for Vec3A {
#[inline]
fn as_ref(&self) -> &[f32; 3] {
unsafe { &*(self as *const Vec3A as *const [f32; 3]) }
}
}
#[cfg(not(target_arch = "spirv"))]
impl AsMut<[f32; 3]> for Vec3A {
#[inline]
fn as_mut(&mut self) -> &mut [f32; 3] {
unsafe { &mut *(self as *mut Vec3A as *mut [f32; 3]) }
}
}