aboutsummaryrefslogtreecommitdiff
path: root/src/f64/dvec4.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/f64/dvec4.rs')
-rw-r--r--src/f64/dvec4.rs314
1 files changed, 241 insertions, 73 deletions
diff --git a/src/f64/dvec4.rs b/src/f64/dvec4.rs
index de08d42..acd9ac5 100644
--- a/src/f64/dvec4.rs
+++ b/src/f64/dvec4.rs
@@ -1,18 +1,15 @@
// Generated from vec.rs.tera template. Edit the template, not the generated file.
-use crate::{BVec4, DVec2, DVec3};
+use crate::{f64::math, BVec4, DVec2, DVec3, IVec4, UVec4, Vec4};
#[cfg(not(target_arch = "spirv"))]
use core::fmt;
use core::iter::{Product, Sum};
use core::{f32, ops::*};
-#[cfg(feature = "libm")]
-#[allow(unused_imports)]
-use num_traits::Float;
-
/// Creates a 4-dimensional vector.
#[inline(always)]
+#[must_use]
pub const fn dvec4(x: f64, y: f64, z: f64, w: f64) -> DVec4 {
DVec4::new(x, y, z, w)
}
@@ -39,31 +36,43 @@ impl DVec4 {
/// All negative ones.
pub const NEG_ONE: Self = Self::splat(-1.0);
- /// All NAN.
+ /// All `f64::MIN`.
+ pub const MIN: Self = Self::splat(f64::MIN);
+
+ /// All `f64::MAX`.
+ pub const MAX: Self = Self::splat(f64::MAX);
+
+ /// All `f64::NAN`.
pub const NAN: Self = Self::splat(f64::NAN);
- /// A unit-length vector pointing along the positive X axis.
+ /// All `f64::INFINITY`.
+ pub const INFINITY: Self = Self::splat(f64::INFINITY);
+
+ /// All `f64::NEG_INFINITY`.
+ pub const NEG_INFINITY: Self = Self::splat(f64::NEG_INFINITY);
+
+ /// A unit vector pointing along the positive X axis.
pub const X: Self = Self::new(1.0, 0.0, 0.0, 0.0);
- /// A unit-length vector pointing along the positive Y axis.
+ /// A unit vector pointing along the positive Y axis.
pub const Y: Self = Self::new(0.0, 1.0, 0.0, 0.0);
- /// A unit-length vector pointing along the positive Z axis.
+ /// A unit vector pointing along the positive Z axis.
pub const Z: Self = Self::new(0.0, 0.0, 1.0, 0.0);
- /// A unit-length vector pointing along the positive W axis.
+ /// A unit vector pointing along the positive W axis.
pub const W: Self = Self::new(0.0, 0.0, 0.0, 1.0);
- /// A unit-length vector pointing along the negative X axis.
+ /// A unit vector pointing along the negative X axis.
pub const NEG_X: Self = Self::new(-1.0, 0.0, 0.0, 0.0);
- /// A unit-length vector pointing along the negative Y axis.
+ /// A unit vector pointing along the negative Y axis.
pub const NEG_Y: Self = Self::new(0.0, -1.0, 0.0, 0.0);
- /// A unit-length vector pointing along the negative Z axis.
+ /// A unit vector pointing along the negative Z axis.
pub const NEG_Z: Self = Self::new(0.0, 0.0, -1.0, 0.0);
- /// A unit-length vector pointing along the negative W axis.
+ /// A unit vector pointing along the negative W axis.
pub const NEG_W: Self = Self::new(0.0, 0.0, 0.0, -1.0);
/// The unit axes.
@@ -71,12 +80,14 @@ impl DVec4 {
/// Creates a new vector.
#[inline(always)]
+ #[must_use]
pub const fn new(x: f64, y: f64, z: f64, w: f64) -> Self {
Self { x, y, z, w }
}
/// Creates a vector with all elements set to `v`.
#[inline]
+ #[must_use]
pub const fn splat(v: f64) -> Self {
Self {
x: v,
@@ -95,23 +106,26 @@ impl DVec4 {
/// A true element in the mask uses the corresponding element from `if_true`, and false
/// uses the element from `if_false`.
#[inline]
+ #[must_use]
pub fn select(mask: BVec4, if_true: Self, if_false: Self) -> Self {
Self {
- x: if mask.x { if_true.x } else { if_false.x },
- y: if mask.y { if_true.y } else { if_false.y },
- z: if mask.z { if_true.z } else { if_false.z },
- w: if mask.w { if_true.w } else { if_false.w },
+ x: if mask.test(0) { if_true.x } else { if_false.x },
+ y: if mask.test(1) { if_true.y } else { if_false.y },
+ z: if mask.test(2) { if_true.z } else { if_false.z },
+ w: if mask.test(3) { if_true.w } else { if_false.w },
}
}
/// Creates a new vector from an array.
#[inline]
+ #[must_use]
pub const fn from_array(a: [f64; 4]) -> Self {
Self::new(a[0], a[1], a[2], a[3])
}
/// `[x, y, z, w]`
#[inline]
+ #[must_use]
pub const fn to_array(&self) -> [f64; 4] {
[self.x, self.y, self.z, self.w]
}
@@ -122,6 +136,7 @@ impl DVec4 {
///
/// Panics if `slice` is less than 4 elements long.
#[inline]
+ #[must_use]
pub const fn from_slice(slice: &[f64]) -> Self {
Self::new(slice[0], slice[1], slice[2], slice[3])
}
@@ -139,10 +154,11 @@ impl DVec4 {
slice[3] = self.w;
}
- /// Creates a 2D vector from the `x`, `y` and `z` elements of `self`, discarding `w`.
+ /// Creates a 3D vector from the `x`, `y` and `z` elements of `self`, discarding `w`.
///
- /// Truncation to `DVec3` may also be performed by using `self.xyz()` or `DVec3::from()`.
+ /// Truncation to [`DVec3`] may also be performed by using [`self.xyz()`][crate::swizzles::Vec4Swizzles::xyz()].
#[inline]
+ #[must_use]
pub fn truncate(self) -> DVec3 {
use crate::swizzles::Vec4Swizzles;
self.xyz()
@@ -150,12 +166,14 @@ impl DVec4 {
/// Computes the dot product of `self` and `rhs`.
#[inline]
+ #[must_use]
pub fn dot(self, rhs: Self) -> f64 {
(self.x * rhs.x) + (self.y * rhs.y) + (self.z * rhs.z) + (self.w * rhs.w)
}
/// Returns a vector where every component is the dot product of `self` and `rhs`.
#[inline]
+ #[must_use]
pub fn dot_into_vec(self, rhs: Self) -> Self {
Self::splat(self.dot(rhs))
}
@@ -164,6 +182,7 @@ impl DVec4 {
///
/// In other words this computes `[self.x.min(rhs.x), self.y.min(rhs.y), ..]`.
#[inline]
+ #[must_use]
pub fn min(self, rhs: Self) -> Self {
Self {
x: self.x.min(rhs.x),
@@ -177,6 +196,7 @@ impl DVec4 {
///
/// In other words this computes `[self.x.max(rhs.x), self.y.max(rhs.y), ..]`.
#[inline]
+ #[must_use]
pub fn max(self, rhs: Self) -> Self {
Self {
x: self.x.max(rhs.x),
@@ -194,6 +214,7 @@ impl DVec4 {
///
/// Will panic if `min` is greater than `max` when `glam_assert` is enabled.
#[inline]
+ #[must_use]
pub fn clamp(self, min: Self, max: Self) -> Self {
glam_assert!(min.cmple(max).all(), "clamp: expected min <= max");
self.max(min).min(max)
@@ -203,6 +224,7 @@ impl DVec4 {
///
/// In other words this computes `min(x, y, ..)`.
#[inline]
+ #[must_use]
pub fn min_element(self) -> f64 {
self.x.min(self.y.min(self.z.min(self.w)))
}
@@ -211,6 +233,7 @@ impl DVec4 {
///
/// In other words this computes `max(x, y, ..)`.
#[inline]
+ #[must_use]
pub fn max_element(self) -> f64 {
self.x.max(self.y.max(self.z.max(self.w)))
}
@@ -221,6 +244,7 @@ impl DVec4 {
/// In other words, this computes `[self.x == rhs.x, self.y == rhs.y, ..]` for all
/// elements.
#[inline]
+ #[must_use]
pub fn cmpeq(self, rhs: Self) -> BVec4 {
BVec4::new(
self.x.eq(&rhs.x),
@@ -236,6 +260,7 @@ impl DVec4 {
/// In other words this computes `[self.x != rhs.x, self.y != rhs.y, ..]` for all
/// elements.
#[inline]
+ #[must_use]
pub fn cmpne(self, rhs: Self) -> BVec4 {
BVec4::new(
self.x.ne(&rhs.x),
@@ -251,6 +276,7 @@ impl DVec4 {
/// In other words this computes `[self.x >= rhs.x, self.y >= rhs.y, ..]` for all
/// elements.
#[inline]
+ #[must_use]
pub fn cmpge(self, rhs: Self) -> BVec4 {
BVec4::new(
self.x.ge(&rhs.x),
@@ -266,6 +292,7 @@ impl DVec4 {
/// In other words this computes `[self.x > rhs.x, self.y > rhs.y, ..]` for all
/// elements.
#[inline]
+ #[must_use]
pub fn cmpgt(self, rhs: Self) -> BVec4 {
BVec4::new(
self.x.gt(&rhs.x),
@@ -281,6 +308,7 @@ impl DVec4 {
/// In other words this computes `[self.x <= rhs.x, self.y <= rhs.y, ..]` for all
/// elements.
#[inline]
+ #[must_use]
pub fn cmple(self, rhs: Self) -> BVec4 {
BVec4::new(
self.x.le(&rhs.x),
@@ -296,6 +324,7 @@ impl DVec4 {
/// In other words this computes `[self.x < rhs.x, self.y < rhs.y, ..]` for all
/// elements.
#[inline]
+ #[must_use]
pub fn cmplt(self, rhs: Self) -> BVec4 {
BVec4::new(
self.x.lt(&rhs.x),
@@ -307,12 +336,13 @@ impl DVec4 {
/// Returns a vector containing the absolute value of each element of `self`.
#[inline]
+ #[must_use]
pub fn abs(self) -> Self {
Self {
- x: self.x.abs(),
- y: self.y.abs(),
- z: self.z.abs(),
- w: self.w.abs(),
+ x: math::abs(self.x),
+ y: math::abs(self.y),
+ z: math::abs(self.z),
+ w: math::abs(self.w),
}
}
@@ -322,23 +352,25 @@ impl DVec4 {
/// - `-1.0` if the number is negative, `-0.0` or `NEG_INFINITY`
/// - `NAN` if the number is `NAN`
#[inline]
+ #[must_use]
pub fn signum(self) -> Self {
Self {
- x: self.x.signum(),
- y: self.y.signum(),
- z: self.z.signum(),
- w: self.w.signum(),
+ x: math::signum(self.x),
+ y: math::signum(self.y),
+ z: math::signum(self.z),
+ w: math::signum(self.w),
}
}
/// Returns a vector with signs of `rhs` and the magnitudes of `self`.
#[inline]
+ #[must_use]
pub fn copysign(self, rhs: Self) -> Self {
Self {
- x: self.x.copysign(rhs.x),
- y: self.y.copysign(rhs.y),
- z: self.z.copysign(rhs.z),
- w: self.w.copysign(rhs.w),
+ x: math::copysign(self.x, rhs.x),
+ y: math::copysign(self.y, rhs.y),
+ z: math::copysign(self.z, rhs.z),
+ w: math::copysign(self.w, rhs.w),
}
}
@@ -347,6 +379,7 @@ impl DVec4 {
/// A negative element results in a `1` bit and a positive element in a `0` bit. Element `x` goes
/// into the first lowest bit, element `y` into the second, etc.
#[inline]
+ #[must_use]
pub fn is_negative_bitmask(self) -> u32 {
(self.x.is_sign_negative() as u32)
| (self.y.is_sign_negative() as u32) << 1
@@ -357,12 +390,14 @@ impl DVec4 {
/// Returns `true` if, and only if, all elements are finite. If any element is either
/// `NaN`, positive or negative infinity, this will return `false`.
#[inline]
+ #[must_use]
pub fn is_finite(self) -> bool {
self.x.is_finite() && self.y.is_finite() && self.z.is_finite() && self.w.is_finite()
}
/// Returns `true` if any elements are `NaN`.
#[inline]
+ #[must_use]
pub fn is_nan(self) -> bool {
self.x.is_nan() || self.y.is_nan() || self.z.is_nan() || self.w.is_nan()
}
@@ -371,6 +406,7 @@ impl DVec4 {
///
/// In other words, this computes `[x.is_nan(), y.is_nan(), z.is_nan(), w.is_nan()]`.
#[inline]
+ #[must_use]
pub fn is_nan_mask(self) -> BVec4 {
BVec4::new(
self.x.is_nan(),
@@ -383,8 +419,9 @@ impl DVec4 {
/// Computes the length of `self`.
#[doc(alias = "magnitude")]
#[inline]
+ #[must_use]
pub fn length(self) -> f64 {
- self.dot(self).sqrt()
+ math::sqrt(self.dot(self))
}
/// Computes the squared length of `self`.
@@ -392,6 +429,7 @@ impl DVec4 {
/// This is faster than `length()` as it avoids a square root operation.
#[doc(alias = "magnitude2")]
#[inline]
+ #[must_use]
pub fn length_squared(self) -> f64 {
self.dot(self)
}
@@ -400,33 +438,62 @@ impl DVec4 {
///
/// For valid results, `self` must _not_ be of length zero.
#[inline]
+ #[must_use]
pub fn length_recip(self) -> f64 {
self.length().recip()
}
/// Computes the Euclidean distance between two points in space.
#[inline]
+ #[must_use]
pub fn distance(self, rhs: Self) -> f64 {
(self - rhs).length()
}
/// Compute the squared euclidean distance between two points in space.
#[inline]
+ #[must_use]
pub fn distance_squared(self, rhs: Self) -> f64 {
(self - rhs).length_squared()
}
+ /// Returns the element-wise quotient of [Euclidean division] of `self` by `rhs`.
+ #[inline]
+ #[must_use]
+ pub fn div_euclid(self, rhs: Self) -> Self {
+ Self::new(
+ math::div_euclid(self.x, rhs.x),
+ math::div_euclid(self.y, rhs.y),
+ math::div_euclid(self.z, rhs.z),
+ math::div_euclid(self.w, rhs.w),
+ )
+ }
+
+ /// Returns the element-wise remainder of [Euclidean division] of `self` by `rhs`.
+ ///
+ /// [Euclidean division]: f64::rem_euclid
+ #[inline]
+ #[must_use]
+ pub fn rem_euclid(self, rhs: Self) -> Self {
+ Self::new(
+ math::rem_euclid(self.x, rhs.x),
+ math::rem_euclid(self.y, rhs.y),
+ math::rem_euclid(self.z, rhs.z),
+ math::rem_euclid(self.w, rhs.w),
+ )
+ }
+
/// Returns `self` normalized to length 1.0.
///
/// For valid results, `self` must _not_ be of length zero, nor very close to zero.
///
- /// See also [`Self::try_normalize`] and [`Self::normalize_or_zero`].
+ /// See also [`Self::try_normalize()`] and [`Self::normalize_or_zero()`].
///
/// Panics
///
/// Will panic if `self` is zero length when `glam_assert` is enabled.
- #[must_use]
#[inline]
+ #[must_use]
pub fn normalize(self) -> Self {
#[allow(clippy::let_and_return)]
let normalized = self.mul(self.length_recip());
@@ -439,9 +506,9 @@ impl DVec4 {
/// In particular, if the input is zero (or very close to zero), or non-finite,
/// the result of this operation will be `None`.
///
- /// See also [`Self::normalize_or_zero`].
- #[must_use]
+ /// See also [`Self::normalize_or_zero()`].
#[inline]
+ #[must_use]
pub fn try_normalize(self) -> Option<Self> {
let rcp = self.length_recip();
if rcp.is_finite() && rcp > 0.0 {
@@ -456,9 +523,9 @@ impl DVec4 {
/// In particular, if the input is zero (or very close to zero), or non-finite,
/// the result of this operation will be zero.
///
- /// See also [`Self::try_normalize`].
- #[must_use]
+ /// See also [`Self::try_normalize()`].
#[inline]
+ #[must_use]
pub fn normalize_or_zero(self) -> Self {
let rcp = self.length_recip();
if rcp.is_finite() && rcp > 0.0 {
@@ -472,9 +539,10 @@ impl DVec4 {
///
/// Uses a precision threshold of `1e-6`.
#[inline]
+ #[must_use]
pub fn is_normalized(self) -> bool {
// TODO: do something with epsilon
- (self.length_squared() - 1.0).abs() <= 1e-4
+ math::abs(self.length_squared() - 1.0) <= 1e-4
}
/// Returns the vector projection of `self` onto `rhs`.
@@ -484,8 +552,8 @@ impl DVec4 {
/// # Panics
///
/// Will panic if `rhs` is zero length when `glam_assert` is enabled.
- #[must_use]
#[inline]
+ #[must_use]
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());
@@ -502,8 +570,8 @@ impl DVec4 {
/// # Panics
///
/// Will panic if `rhs` has a length of zero when `glam_assert` is enabled.
- #[must_use]
#[inline]
+ #[must_use]
pub fn reject_from(self, rhs: Self) -> Self {
self - self.project_onto(rhs)
}
@@ -515,8 +583,8 @@ impl DVec4 {
/// # Panics
///
/// Will panic if `rhs` is not normalized when `glam_assert` is enabled.
- #[must_use]
#[inline]
+ #[must_use]
pub fn project_onto_normalized(self, rhs: Self) -> Self {
glam_assert!(rhs.is_normalized());
rhs * self.dot(rhs)
@@ -532,8 +600,8 @@ impl DVec4 {
/// # Panics
///
/// Will panic if `rhs` is not normalized when `glam_assert` is enabled.
- #[must_use]
#[inline]
+ #[must_use]
pub fn reject_from_normalized(self, rhs: Self) -> Self {
self - self.project_onto_normalized(rhs)
}
@@ -541,36 +609,52 @@ impl DVec4 {
/// Returns a vector containing the nearest integer to a number for each element of `self`.
/// Round half-way cases away from 0.0.
#[inline]
+ #[must_use]
pub fn round(self) -> Self {
Self {
- x: self.x.round(),
- y: self.y.round(),
- z: self.z.round(),
- w: self.w.round(),
+ x: math::round(self.x),
+ y: math::round(self.y),
+ z: math::round(self.z),
+ w: math::round(self.w),
}
}
/// Returns a vector containing the largest integer less than or equal to a number for each
/// element of `self`.
#[inline]
+ #[must_use]
pub fn floor(self) -> Self {
Self {
- x: self.x.floor(),
- y: self.y.floor(),
- z: self.z.floor(),
- w: self.w.floor(),
+ x: math::floor(self.x),
+ y: math::floor(self.y),
+ z: math::floor(self.z),
+ w: math::floor(self.w),
}
}
/// Returns a vector containing the smallest integer greater than or equal to a number for
/// each element of `self`.
#[inline]
+ #[must_use]
pub fn ceil(self) -> Self {
Self {
- x: self.x.ceil(),
- y: self.y.ceil(),
- z: self.z.ceil(),
- w: self.w.ceil(),
+ x: math::ceil(self.x),
+ y: math::ceil(self.y),
+ z: math::ceil(self.z),
+ w: math::ceil(self.w),
+ }
+ }
+
+ /// Returns a vector containing the integer part each element of `self`. This means numbers are
+ /// always truncated towards zero.
+ #[inline]
+ #[must_use]
+ pub fn trunc(self) -> Self {
+ Self {
+ x: math::trunc(self.x),
+ y: math::trunc(self.y),
+ z: math::trunc(self.z),
+ w: math::trunc(self.w),
}
}
@@ -579,6 +663,7 @@ impl DVec4 {
///
/// Note that this is fast but not precise for large numbers.
#[inline]
+ #[must_use]
pub fn fract(self) -> Self {
self - self.floor()
}
@@ -586,29 +671,37 @@ impl DVec4 {
/// Returns a vector containing `e^self` (the exponential function) for each element of
/// `self`.
#[inline]
+ #[must_use]
pub fn exp(self) -> Self {
- Self::new(self.x.exp(), self.y.exp(), self.z.exp(), self.w.exp())
+ Self::new(
+ math::exp(self.x),
+ math::exp(self.y),
+ math::exp(self.z),
+ math::exp(self.w),
+ )
}
/// Returns a vector containing each element of `self` raised to the power of `n`.
#[inline]
+ #[must_use]
pub fn powf(self, n: f64) -> Self {
Self::new(
- self.x.powf(n),
- self.y.powf(n),
- self.z.powf(n),
- self.w.powf(n),
+ math::powf(self.x, n),
+ math::powf(self.y, n),
+ math::powf(self.z, n),
+ math::powf(self.w, n),
)
}
/// Returns a vector containing the reciprocal `1.0/n` of each element of `self`.
#[inline]
+ #[must_use]
pub fn recip(self) -> Self {
Self {
- x: self.x.recip(),
- y: self.y.recip(),
- z: self.z.recip(),
- w: self.w.recip(),
+ x: 1.0 / self.x,
+ y: 1.0 / self.y,
+ z: 1.0 / self.z,
+ w: 1.0 / self.w,
}
}
@@ -619,6 +712,7 @@ impl DVec4 {
/// extrapolated.
#[doc(alias = "mix")]
#[inline]
+ #[must_use]
pub fn lerp(self, rhs: Self, s: f64) -> Self {
self + ((rhs - self) * s)
}
@@ -633,6 +727,7 @@ impl DVec4 {
/// For more see
/// [comparing floating point numbers](https://randomascii.wordpress.com/2012/02/25/comparing-floating-point-numbers-2012-edition/).
#[inline]
+ #[must_use]
pub fn abs_diff_eq(self, rhs: Self, max_abs_diff: f64) -> bool {
self.sub(rhs).abs().cmple(Self::splat(max_abs_diff)).all()
}
@@ -643,33 +738,38 @@ impl DVec4 {
///
/// Will panic if `min` is greater than `max` when `glam_assert` is enabled.
#[inline]
+ #[must_use]
pub fn clamp_length(self, min: f64, max: f64) -> Self {
glam_assert!(min <= max);
let length_sq = self.length_squared();
if length_sq < min * min {
- self * (length_sq.sqrt().recip() * min)
+ min * (self / math::sqrt(length_sq))
} else if length_sq > max * max {
- self * (length_sq.sqrt().recip() * max)
+ max * (self / math::sqrt(length_sq))
} else {
self
}
}
/// Returns a vector with a length no more than `max`
+ #[inline]
+ #[must_use]
pub fn clamp_length_max(self, max: f64) -> Self {
let length_sq = self.length_squared();
if length_sq > max * max {
- self * (length_sq.sqrt().recip() * max)
+ max * (self / math::sqrt(length_sq))
} else {
self
}
}
/// Returns a vector with a length no less than `min`
+ #[inline]
+ #[must_use]
pub fn clamp_length_min(self, min: f64) -> Self {
let length_sq = self.length_squared();
if length_sq < min * min {
- self * (length_sq.sqrt().recip() * min)
+ min * (self / math::sqrt(length_sq))
} else {
self
}
@@ -683,32 +783,64 @@ impl DVec4 {
/// and will be heavily dependant on designing algorithms with specific target hardware in
/// mind.
#[inline]
+ #[must_use]
pub fn mul_add(self, a: Self, b: Self) -> Self {
Self::new(
- self.x.mul_add(a.x, b.x),
- self.y.mul_add(a.y, b.y),
- self.z.mul_add(a.z, b.z),
- self.w.mul_add(a.w, b.w),
+ math::mul_add(self.x, a.x, b.x),
+ math::mul_add(self.y, a.y, b.y),
+ math::mul_add(self.z, a.z, b.z),
+ math::mul_add(self.w, a.w, b.w),
)
}
/// Casts all elements of `self` to `f32`.
#[inline]
+ #[must_use]
pub fn as_vec4(&self) -> crate::Vec4 {
crate::Vec4::new(self.x as f32, self.y as f32, self.z as f32, self.w as f32)
}
+ /// Casts all elements of `self` to `i16`.
+ #[inline]
+ #[must_use]
+ pub fn as_i16vec4(&self) -> crate::I16Vec4 {
+ crate::I16Vec4::new(self.x as i16, self.y as i16, self.z as i16, self.w as i16)
+ }
+
+ /// Casts all elements of `self` to `u16`.
+ #[inline]
+ #[must_use]
+ pub fn as_u16vec4(&self) -> crate::U16Vec4 {
+ crate::U16Vec4::new(self.x as u16, self.y as u16, self.z as u16, self.w as u16)
+ }
+
/// Casts all elements of `self` to `i32`.
#[inline]
+ #[must_use]
pub fn as_ivec4(&self) -> crate::IVec4 {
crate::IVec4::new(self.x as i32, self.y as i32, self.z as i32, self.w as i32)
}
/// Casts all elements of `self` to `u32`.
#[inline]
+ #[must_use]
pub fn as_uvec4(&self) -> crate::UVec4 {
crate::UVec4::new(self.x as u32, self.y as u32, self.z as u32, self.w as u32)
}
+
+ /// Casts all elements of `self` to `i64`.
+ #[inline]
+ #[must_use]
+ pub fn as_i64vec4(&self) -> crate::I64Vec4 {
+ crate::I64Vec4::new(self.x as i64, self.y as i64, self.z as i64, self.w as i64)
+ }
+
+ /// Casts all elements of `self` to `u64`.
+ #[inline]
+ #[must_use]
+ pub fn as_u64vec4(&self) -> crate::U64Vec4 {
+ crate::U64Vec4::new(self.x as u64, self.y as u64, self.z as u64, self.w as u64)
+ }
}
impl Default for DVec4 {
@@ -1183,3 +1315,39 @@ impl From<(DVec2, DVec2)> for DVec4 {
Self::new(v.x, v.y, u.x, u.y)
}
}
+
+impl From<Vec4> for DVec4 {
+ #[inline]
+ fn from(v: Vec4) -> Self {
+ Self::new(
+ f64::from(v.x),
+ f64::from(v.y),
+ f64::from(v.z),
+ f64::from(v.w),
+ )
+ }
+}
+
+impl From<IVec4> for DVec4 {
+ #[inline]
+ fn from(v: IVec4) -> Self {
+ Self::new(
+ f64::from(v.x),
+ f64::from(v.y),
+ f64::from(v.z),
+ f64::from(v.w),
+ )
+ }
+}
+
+impl From<UVec4> for DVec4 {
+ #[inline]
+ fn from(v: UVec4) -> Self {
+ Self::new(
+ f64::from(v.x),
+ f64::from(v.y),
+ f64::from(v.z),
+ f64::from(v.w),
+ )
+ }
+}