Struct bevy_math::DVec4

source ·
pub struct DVec4 {
    pub x: f64,
    pub y: f64,
    pub z: f64,
    pub w: f64,
}
Expand description

A 4-dimensional vector.

Fields§

§x: f64§y: f64§z: f64§w: f64

Implementations§

source§

impl DVec4

source

pub const ZERO: DVec4 = Self::splat(0.0)

All zeroes.

source

pub const ONE: DVec4 = Self::splat(1.0)

All ones.

source

pub const NEG_ONE: DVec4 = Self::splat(-1.0)

All negative ones.

source

pub const NAN: DVec4 = Self::splat(f64::NAN)

All NAN.

source

pub const X: DVec4 = Self::new(1.0, 0.0, 0.0, 0.0)

A unit-length vector pointing along the positive X axis.

source

pub const Y: DVec4 = Self::new(0.0, 1.0, 0.0, 0.0)

A unit-length vector pointing along the positive Y axis.

source

pub const Z: DVec4 = Self::new(0.0, 0.0, 1.0, 0.0)

A unit-length vector pointing along the positive Z axis.

source

pub const W: DVec4 = Self::new(0.0, 0.0, 0.0, 1.0)

A unit-length vector pointing along the positive W axis.

source

pub const NEG_X: DVec4 = Self::new(-1.0, 0.0, 0.0, 0.0)

A unit-length vector pointing along the negative X axis.

source

pub const NEG_Y: DVec4 = Self::new(0.0, -1.0, 0.0, 0.0)

A unit-length vector pointing along the negative Y axis.

source

pub const NEG_Z: DVec4 = Self::new(0.0, 0.0, -1.0, 0.0)

A unit-length vector pointing along the negative Z axis.

source

pub const NEG_W: DVec4 = Self::new(0.0, 0.0, 0.0, -1.0)

A unit-length vector pointing along the negative W axis.

source

pub const AXES: [DVec4; 4] = [Self::X, Self::Y, Self::Z, Self::W]

The unit axes.

source

pub const fn new(x: f64, y: f64, z: f64, w: f64) -> DVec4

Creates a new vector.

source

pub const fn splat(v: f64) -> DVec4

Creates a vector with all elements set to v.

source

pub fn select(mask: BVec4, if_true: DVec4, if_false: DVec4) -> DVec4

Creates a vector from the elements in if_true and if_false, selecting which to use for each element of self.

A true element in the mask uses the corresponding element from if_true, and false uses the element from if_false.

source

pub const fn from_array(a: [f64; 4]) -> DVec4

Creates a new vector from an array.

source

pub const fn to_array(&self) -> [f64; 4]

[x, y, z, w]

source

pub const fn from_slice(slice: &[f64]) -> DVec4

Creates a vector from the first 4 values in slice.

Panics

Panics if slice is less than 4 elements long.

source

pub fn write_to_slice(self, slice: &mut [f64])

Writes the elements of self to the first 4 elements in slice.

Panics

Panics if slice is less than 4 elements long.

source

pub fn truncate(self) -> DVec3

Creates a 2D 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().

source

pub fn dot(self, rhs: DVec4) -> f64

Computes the dot product of self and rhs.

source

pub fn dot_into_vec(self, rhs: DVec4) -> DVec4

Returns a vector where every component is the dot product of self and rhs.

source

pub fn min(self, rhs: DVec4) -> DVec4

Returns a vector containing the minimum values for each element of self and rhs.

In other words this computes [self.x.min(rhs.x), self.y.min(rhs.y), ..].

source

pub fn max(self, rhs: DVec4) -> DVec4

Returns a vector containing the maximum values for each element of self and rhs.

In other words this computes [self.x.max(rhs.x), self.y.max(rhs.y), ..].

source

pub fn clamp(self, min: DVec4, max: DVec4) -> DVec4

Component-wise clamping of values, similar to f64::clamp.

Each element in min must be less-or-equal to the corresponding element in max.

Panics

Will panic if min is greater than max when glam_assert is enabled.

source

pub fn min_element(self) -> f64

Returns the horizontal minimum of self.

In other words this computes min(x, y, ..).

source

pub fn max_element(self) -> f64

Returns the horizontal maximum of self.

In other words this computes max(x, y, ..).

source

pub fn cmpeq(self, rhs: DVec4) -> BVec4

Returns a vector mask containing the result of a == comparison for each element of self and rhs.

In other words, this computes [self.x == rhs.x, self.y == rhs.y, ..] for all elements.

source

pub fn cmpne(self, rhs: DVec4) -> BVec4

Returns a vector mask containing the result of a != comparison for each element of self and rhs.

In other words this computes [self.x != rhs.x, self.y != rhs.y, ..] for all elements.

source

pub fn cmpge(self, rhs: DVec4) -> BVec4

Returns a vector mask containing the result of a >= comparison for each element of self and rhs.

In other words this computes [self.x >= rhs.x, self.y >= rhs.y, ..] for all elements.

source

pub fn cmpgt(self, rhs: DVec4) -> BVec4

Returns a vector mask containing the result of a > comparison for each element of self and rhs.

In other words this computes [self.x > rhs.x, self.y > rhs.y, ..] for all elements.

source

pub fn cmple(self, rhs: DVec4) -> BVec4

Returns a vector mask containing the result of a <= comparison for each element of self and rhs.

In other words this computes [self.x <= rhs.x, self.y <= rhs.y, ..] for all elements.

source

pub fn cmplt(self, rhs: DVec4) -> BVec4

Returns a vector mask containing the result of a < comparison for each element of self and rhs.

In other words this computes [self.x < rhs.x, self.y < rhs.y, ..] for all elements.

source

pub fn abs(self) -> DVec4

Returns a vector containing the absolute value of each element of self.

source

pub fn signum(self) -> DVec4

Returns a vector with elements representing the sign of self.

  • 1.0 if the number is positive, +0.0 or INFINITY
  • -1.0 if the number is negative, -0.0 or NEG_INFINITY
  • NAN if the number is NAN
source

pub fn copysign(self, rhs: DVec4) -> DVec4

Returns a vector with signs of rhs and the magnitudes of self.

source

pub fn is_negative_bitmask(self) -> u32

Returns a bitmask with the lowest 4 bits set to the sign bits from the elements of self.

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.

source

pub fn is_finite(self) -> bool

Returns true if, and only if, all elements are finite. If any element is either NaN, positive or negative infinity, this will return false.

source

pub fn is_nan(self) -> bool

Returns true if any elements are NaN.

source

pub fn is_nan_mask(self) -> BVec4

Performs is_nan on each element of self, returning a vector mask of the results.

In other words, this computes [x.is_nan(), y.is_nan(), z.is_nan(), w.is_nan()].

source

pub fn length(self) -> f64

Computes the length of self.

source

pub fn length_squared(self) -> f64

Computes the squared length of self.

This is faster than length() as it avoids a square root operation.

source

pub fn length_recip(self) -> f64

Computes 1.0 / length().

For valid results, self must not be of length zero.

source

pub fn distance(self, rhs: DVec4) -> f64

Computes the Euclidean distance between two points in space.

source

pub fn distance_squared(self, rhs: DVec4) -> f64

Compute the squared euclidean distance between two points in space.

source

pub fn normalize(self) -> DVec4

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.

Panics

Will panic if self is zero length when glam_assert is enabled.

source

pub fn try_normalize(self) -> Option<DVec4>

Returns self normalized to length 1.0 if possible, else returns None.

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.

source

pub fn normalize_or_zero(self) -> DVec4

Returns self normalized to length 1.0 if possible, else returns zero.

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.

source

pub fn is_normalized(self) -> bool

Returns whether self is length 1.0 or not.

Uses a precision threshold of 1e-6.

source

pub fn project_onto(self, rhs: DVec4) -> DVec4

Returns the vector projection of self onto rhs.

rhs must be of non-zero length.

Panics

Will panic if rhs is zero length when glam_assert is enabled.

source

pub fn reject_from(self, rhs: DVec4) -> DVec4

Returns the vector rejection of self from rhs.

The vector rejection is the vector perpendicular to the projection of self onto rhs, in rhs words the result of self - self.project_onto(rhs).

rhs must be of non-zero length.

Panics

Will panic if rhs has a length of zero when glam_assert is enabled.

source

pub fn project_onto_normalized(self, rhs: DVec4) -> DVec4

Returns the vector projection of self onto rhs.

rhs must be normalized.

Panics

Will panic if rhs is not normalized when glam_assert is enabled.

source

pub fn reject_from_normalized(self, rhs: DVec4) -> DVec4

Returns the vector rejection of self from rhs.

The vector rejection is the vector perpendicular to the projection of self onto rhs, in rhs words the result of self - self.project_onto(rhs).

rhs must be normalized.

Panics

Will panic if rhs is not normalized when glam_assert is enabled.

source

pub fn round(self) -> DVec4

Returns a vector containing the nearest integer to a number for each element of self. Round half-way cases away from 0.0.

source

pub fn floor(self) -> DVec4

Returns a vector containing the largest integer less than or equal to a number for each element of self.

source

pub fn ceil(self) -> DVec4

Returns a vector containing the smallest integer greater than or equal to a number for each element of self.

source

pub fn fract(self) -> DVec4

Returns a vector containing the fractional part of the vector, e.g. self - self.floor().

Note that this is fast but not precise for large numbers.

source

pub fn exp(self) -> DVec4

Returns a vector containing e^self (the exponential function) for each element of self.

source

pub fn powf(self, n: f64) -> DVec4

Returns a vector containing each element of self raised to the power of n.

source

pub fn recip(self) -> DVec4

Returns a vector containing the reciprocal 1.0/n of each element of self.

source

pub fn lerp(self, rhs: DVec4, s: f64) -> DVec4

Performs a linear interpolation between self and rhs based on the value s.

When s is 0.0, the result will be equal to self. When s is 1.0, the result will be equal to rhs. When s is outside of range [0, 1], the result is linearly extrapolated.

source

pub fn abs_diff_eq(self, rhs: DVec4, max_abs_diff: f64) -> bool

Returns true if the absolute difference of all elements between self and rhs is less than or equal to max_abs_diff.

This can be used to compare if two vectors contain similar elements. It works best when comparing with a known value. The max_abs_diff that should be used used depends on the values being compared against.

For more see comparing floating point numbers.

source

pub fn clamp_length(self, min: f64, max: f64) -> DVec4

Returns a vector with a length no less than min and no more than max

Panics

Will panic if min is greater than max when glam_assert is enabled.

source

pub fn clamp_length_max(self, max: f64) -> DVec4

Returns a vector with a length no more than max

source

pub fn clamp_length_min(self, min: f64) -> DVec4

Returns a vector with a length no less than min

source

pub fn mul_add(self, a: DVec4, b: DVec4) -> DVec4

Fused multiply-add. Computes (self * a) + b element-wise with only one rounding error, yielding a more accurate result than an unfused multiply-add.

Using mul_add may be more performant than an unfused multiply-add if the target architecture has a dedicated fma CPU instruction. However, this is not always true, and will be heavily dependant on designing algorithms with specific target hardware in mind.

source

pub fn as_vec4(&self) -> Vec4

Casts all elements of self to f32.

source

pub fn as_ivec4(&self) -> IVec4

Casts all elements of self to i32.

source

pub fn as_uvec4(&self) -> UVec4

Casts all elements of self to u32.

Trait Implementations§

source§

impl Add<DVec4> for DVec4

§

type Output = DVec4

The resulting type after applying the + operator.
source§

fn add(self, rhs: DVec4) -> DVec4

Performs the + operation. Read more
source§

impl Add<f64> for DVec4

§

type Output = DVec4

The resulting type after applying the + operator.
source§

fn add(self, rhs: f64) -> DVec4

Performs the + operation. Read more
source§

impl AddAssign<DVec4> for DVec4

source§

fn add_assign(&mut self, rhs: DVec4)

Performs the += operation. Read more
source§

impl AddAssign<f64> for DVec4

source§

fn add_assign(&mut self, rhs: f64)

Performs the += operation. Read more
source§

impl AsMut<[f64; 4]> for DVec4

source§

fn as_mut(&mut self) -> &mut [f64; 4]

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsRef<[f64; 4]> for DVec4

source§

fn as_ref(&self) -> &[f64; 4]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for DVec4

source§

fn clone(&self) -> DVec4

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for DVec4

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for DVec4

source§

fn default() -> DVec4

Returns the “default value” for a type. Read more
source§

impl Display for DVec4

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Div<DVec4> for DVec4

§

type Output = DVec4

The resulting type after applying the / operator.
source§

fn div(self, rhs: DVec4) -> DVec4

Performs the / operation. Read more
source§

impl Div<f64> for DVec4

§

type Output = DVec4

The resulting type after applying the / operator.
source§

fn div(self, rhs: f64) -> DVec4

Performs the / operation. Read more
source§

impl DivAssign<DVec4> for DVec4

source§

fn div_assign(&mut self, rhs: DVec4)

Performs the /= operation. Read more
source§

impl DivAssign<f64> for DVec4

source§

fn div_assign(&mut self, rhs: f64)

Performs the /= operation. Read more
source§

impl From<[f64; 4]> for DVec4

source§

fn from(a: [f64; 4]) -> DVec4

Converts to this type from the input type.
source§

impl From<(DVec2, DVec2)> for DVec4

source§

fn from(_: (DVec2, DVec2)) -> DVec4

Converts to this type from the input type.
source§

impl From<(DVec2, f64, f64)> for DVec4

source§

fn from(_: (DVec2, f64, f64)) -> DVec4

Converts to this type from the input type.
source§

impl From<(DVec3, f64)> for DVec4

source§

fn from(_: (DVec3, f64)) -> DVec4

Converts to this type from the input type.
source§

impl From<(f64, DVec3)> for DVec4

source§

fn from(_: (f64, DVec3)) -> DVec4

Converts to this type from the input type.
source§

impl From<(f64, f64, f64, f64)> for DVec4

source§

fn from(t: (f64, f64, f64, f64)) -> DVec4

Converts to this type from the input type.
source§

impl From<DQuat> for DVec4

source§

fn from(q: DQuat) -> DVec4

Converts to this type from the input type.
source§

impl Index<usize> for DVec4

§

type Output = f64

The returned type after indexing.
source§

fn index(&self, index: usize) -> &<DVec4 as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for DVec4

source§

fn index_mut(&mut self, index: usize) -> &mut <DVec4 as Index<usize>>::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl Mul<DVec4> for DMat4

§

type Output = DVec4

The resulting type after applying the * operator.
source§

fn mul(self, rhs: DVec4) -> <DMat4 as Mul<DVec4>>::Output

Performs the * operation. Read more
source§

impl Mul<DVec4> for DVec4

§

type Output = DVec4

The resulting type after applying the * operator.
source§

fn mul(self, rhs: DVec4) -> DVec4

Performs the * operation. Read more
source§

impl Mul<f64> for DVec4

§

type Output = DVec4

The resulting type after applying the * operator.
source§

fn mul(self, rhs: f64) -> DVec4

Performs the * operation. Read more
source§

impl MulAssign<DVec4> for DVec4

source§

fn mul_assign(&mut self, rhs: DVec4)

Performs the *= operation. Read more
source§

impl MulAssign<f64> for DVec4

source§

fn mul_assign(&mut self, rhs: f64)

Performs the *= operation. Read more
source§

impl Neg for DVec4

§

type Output = DVec4

The resulting type after applying the - operator.
source§

fn neg(self) -> DVec4

Performs the unary - operation. Read more
source§

impl PartialEq<DVec4> for DVec4

source§

fn eq(&self, other: &DVec4) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a> Product<&'a DVec4> for DVec4

source§

fn product<I>(iter: I) -> DVec4where I: Iterator<Item = &'a DVec4>,

Method which takes an iterator and generates Self from the elements by multiplying the items.
source§

impl Product<DVec4> for DVec4

source§

fn product<I>(iter: I) -> DVec4where I: Iterator<Item = DVec4>,

Method which takes an iterator and generates Self from the elements by multiplying the items.
source§

impl Rem<DVec4> for DVec4

§

type Output = DVec4

The resulting type after applying the % operator.
source§

fn rem(self, rhs: DVec4) -> DVec4

Performs the % operation. Read more
source§

impl Rem<f64> for DVec4

§

type Output = DVec4

The resulting type after applying the % operator.
source§

fn rem(self, rhs: f64) -> DVec4

Performs the % operation. Read more
source§

impl RemAssign<DVec4> for DVec4

source§

fn rem_assign(&mut self, rhs: DVec4)

Performs the %= operation. Read more
source§

impl RemAssign<f64> for DVec4

source§

fn rem_assign(&mut self, rhs: f64)

Performs the %= operation. Read more
source§

impl Sub<DVec4> for DVec4

§

type Output = DVec4

The resulting type after applying the - operator.
source§

fn sub(self, rhs: DVec4) -> DVec4

Performs the - operation. Read more
source§

impl Sub<f64> for DVec4

§

type Output = DVec4

The resulting type after applying the - operator.
source§

fn sub(self, rhs: f64) -> DVec4

Performs the - operation. Read more
source§

impl SubAssign<DVec4> for DVec4

source§

fn sub_assign(&mut self, rhs: DVec4)

Performs the -= operation. Read more
source§

impl SubAssign<f64> for DVec4

source§

fn sub_assign(&mut self, rhs: f64)

Performs the -= operation. Read more
source§

impl<'a> Sum<&'a DVec4> for DVec4

source§

fn sum<I>(iter: I) -> DVec4where I: Iterator<Item = &'a DVec4>,

Method which takes an iterator and generates Self from the elements by “summing up” the items.
source§

impl Sum<DVec4> for DVec4

source§

fn sum<I>(iter: I) -> DVec4where I: Iterator<Item = DVec4>,

Method which takes an iterator and generates Self from the elements by “summing up” the items.
source§

impl Vec4Swizzles for DVec4

§

type Vec2 = DVec2

§

type Vec3 = DVec3

source§

fn xx(self) -> DVec2

source§

fn xy(self) -> DVec2

source§

fn xz(self) -> DVec2

source§

fn xw(self) -> DVec2

source§

fn yx(self) -> DVec2

source§

fn yy(self) -> DVec2

source§

fn yz(self) -> DVec2

source§

fn yw(self) -> DVec2

source§

fn zx(self) -> DVec2

source§

fn zy(self) -> DVec2

source§

fn zz(self) -> DVec2

source§

fn zw(self) -> DVec2

source§

fn wx(self) -> DVec2

source§

fn wy(self) -> DVec2

source§

fn wz(self) -> DVec2

source§

fn ww(self) -> DVec2

source§

fn xxx(self) -> DVec3

source§

fn xxy(self) -> DVec3

source§

fn xxz(self) -> DVec3

source§

fn xxw(self) -> DVec3

source§

fn xyx(self) -> DVec3

source§

fn xyy(self) -> DVec3

source§

fn xyz(self) -> DVec3

source§

fn xyw(self) -> DVec3

source§

fn xzx(self) -> DVec3

source§

fn xzy(self) -> DVec3

source§

fn xzz(self) -> DVec3

source§

fn xzw(self) -> DVec3

source§

fn xwx(self) -> DVec3

source§

fn xwy(self) -> DVec3

source§

fn xwz(self) -> DVec3

source§

fn xww(self) -> DVec3

source§

fn yxx(self) -> DVec3

source§

fn yxy(self) -> DVec3

source§

fn yxz(self) -> DVec3

source§

fn yxw(self) -> DVec3

source§

fn yyx(self) -> DVec3

source§

fn yyy(self) -> DVec3

source§

fn yyz(self) -> DVec3

source§

fn yyw(self) -> DVec3

source§

fn yzx(self) -> DVec3

source§

fn yzy(self) -> DVec3

source§

fn yzz(self) -> DVec3

source§

fn yzw(self) -> DVec3

source§

fn ywx(self) -> DVec3

source§

fn ywy(self) -> DVec3

source§

fn ywz(self) -> DVec3

source§

fn yww(self) -> DVec3

source§

fn zxx(self) -> DVec3

source§

fn zxy(self) -> DVec3

source§

fn zxz(self) -> DVec3

source§

fn zxw(self) -> DVec3

source§

fn zyx(self) -> DVec3

source§

fn zyy(self) -> DVec3

source§

fn zyz(self) -> DVec3

source§

fn zyw(self) -> DVec3

source§

fn zzx(self) -> DVec3

source§

fn zzy(self) -> DVec3

source§

fn zzz(self) -> DVec3

source§

fn zzw(self) -> DVec3

source§

fn zwx(self) -> DVec3

source§

fn zwy(self) -> DVec3

source§

fn zwz(self) -> DVec3

source§

fn zww(self) -> DVec3

source§

fn wxx(self) -> DVec3

source§

fn wxy(self) -> DVec3

source§

fn wxz(self) -> DVec3

source§

fn wxw(self) -> DVec3

source§

fn wyx(self) -> DVec3

source§

fn wyy(self) -> DVec3

source§

fn wyz(self) -> DVec3

source§

fn wyw(self) -> DVec3

source§

fn wzx(self) -> DVec3

source§

fn wzy(self) -> DVec3

source§

fn wzz(self) -> DVec3

source§

fn wzw(self) -> DVec3

source§

fn wwx(self) -> DVec3

source§

fn wwy(self) -> DVec3

source§

fn wwz(self) -> DVec3

source§

fn www(self) -> DVec3

source§

fn xxxx(self) -> DVec4

source§

fn xxxy(self) -> DVec4

source§

fn xxxz(self) -> DVec4

source§

fn xxxw(self) -> DVec4

source§

fn xxyx(self) -> DVec4

source§

fn xxyy(self) -> DVec4

source§

fn xxyz(self) -> DVec4

source§

fn xxyw(self) -> DVec4

source§

fn xxzx(self) -> DVec4

source§

fn xxzy(self) -> DVec4

source§

fn xxzz(self) -> DVec4

source§

fn xxzw(self) -> DVec4

source§

fn xxwx(self) -> DVec4

source§

fn xxwy(self) -> DVec4

source§

fn xxwz(self) -> DVec4

source§

fn xxww(self) -> DVec4

source§

fn xyxx(self) -> DVec4

source§

fn xyxy(self) -> DVec4

source§

fn xyxz(self) -> DVec4

source§

fn xyxw(self) -> DVec4

source§

fn xyyx(self) -> DVec4

source§

fn xyyy(self) -> DVec4

source§

fn xyyz(self) -> DVec4

source§

fn xyyw(self) -> DVec4

source§

fn xyzx(self) -> DVec4

source§

fn xyzy(self) -> DVec4

source§

fn xyzz(self) -> DVec4

source§

fn xyzw(self) -> DVec4

source§

fn xywx(self) -> DVec4

source§

fn xywy(self) -> DVec4

source§

fn xywz(self) -> DVec4

source§

fn xyww(self) -> DVec4

source§

fn xzxx(self) -> DVec4

source§

fn xzxy(self) -> DVec4

source§

fn xzxz(self) -> DVec4

source§

fn xzxw(self) -> DVec4

source§

fn xzyx(self) -> DVec4

source§

fn xzyy(self) -> DVec4

source§

fn xzyz(self) -> DVec4

source§

fn xzyw(self) -> DVec4

source§

fn xzzx(self) -> DVec4

source§

fn xzzy(self) -> DVec4

source§

fn xzzz(self) -> DVec4

source§

fn xzzw(self) -> DVec4

source§

fn xzwx(self) -> DVec4

source§

fn xzwy(self) -> DVec4

source§

fn xzwz(self) -> DVec4

source§

fn xzww(self) -> DVec4

source§

fn xwxx(self) -> DVec4

source§

fn xwxy(self) -> DVec4

source§

fn xwxz(self) -> DVec4

source§

fn xwxw(self) -> DVec4

source§

fn xwyx(self) -> DVec4

source§

fn xwyy(self) -> DVec4

source§

fn xwyz(self) -> DVec4

source§

fn xwyw(self) -> DVec4

source§

fn xwzx(self) -> DVec4

source§

fn xwzy(self) -> DVec4

source§

fn xwzz(self) -> DVec4

source§

fn xwzw(self) -> DVec4

source§

fn xwwx(self) -> DVec4

source§

fn xwwy(self) -> DVec4

source§

fn xwwz(self) -> DVec4

source§

fn xwww(self) -> DVec4

source§

fn yxxx(self) -> DVec4

source§

fn yxxy(self) -> DVec4

source§

fn yxxz(self) -> DVec4

source§

fn yxxw(self) -> DVec4

source§

fn yxyx(self) -> DVec4

source§

fn yxyy(self) -> DVec4

source§

fn yxyz(self) -> DVec4

source§

fn yxyw(self) -> DVec4

source§

fn yxzx(self) -> DVec4

source§

fn yxzy(self) -> DVec4

source§

fn yxzz(self) -> DVec4

source§

fn yxzw(self) -> DVec4

source§

fn yxwx(self) -> DVec4

source§

fn yxwy(self) -> DVec4

source§

fn yxwz(self) -> DVec4

source§

fn yxww(self) -> DVec4

source§

fn yyxx(self) -> DVec4

source§

fn yyxy(self) -> DVec4

source§

fn yyxz(self) -> DVec4

source§

fn yyxw(self) -> DVec4

source§

fn yyyx(self) -> DVec4

source§

fn yyyy(self) -> DVec4

source§

fn yyyz(self) -> DVec4

source§

fn yyyw(self) -> DVec4

source§

fn yyzx(self) -> DVec4

source§

fn yyzy(self) -> DVec4

source§

fn yyzz(self) -> DVec4

source§

fn yyzw(self) -> DVec4

source§

fn yywx(self) -> DVec4

source§

fn yywy(self) -> DVec4

source§

fn yywz(self) -> DVec4

source§

fn yyww(self) -> DVec4

source§

fn yzxx(self) -> DVec4

source§

fn yzxy(self) -> DVec4

source§

fn yzxz(self) -> DVec4

source§

fn yzxw(self) -> DVec4

source§

fn yzyx(self) -> DVec4

source§

fn yzyy(self) -> DVec4

source§

fn yzyz(self) -> DVec4

source§

fn yzyw(self) -> DVec4

source§

fn yzzx(self) -> DVec4

source§

fn yzzy(self) -> DVec4

source§

fn yzzz(self) -> DVec4

source§

fn yzzw(self) -> DVec4

source§

fn yzwx(self) -> DVec4

source§

fn yzwy(self) -> DVec4

source§

fn yzwz(self) -> DVec4

source§

fn yzww(self) -> DVec4

source§

fn ywxx(self) -> DVec4

source§

fn ywxy(self) -> DVec4

source§

fn ywxz(self) -> DVec4

source§

fn ywxw(self) -> DVec4

source§

fn ywyx(self) -> DVec4

source§

fn ywyy(self) -> DVec4

source§

fn ywyz(self) -> DVec4

source§

fn ywyw(self) -> DVec4

source§

fn ywzx(self) -> DVec4

source§

fn ywzy(self) -> DVec4

source§

fn ywzz(self) -> DVec4

source§

fn ywzw(self) -> DVec4

source§

fn ywwx(self) -> DVec4

source§

fn ywwy(self) -> DVec4

source§

fn ywwz(self) -> DVec4

source§

fn ywww(self) -> DVec4

source§

fn zxxx(self) -> DVec4

source§

fn zxxy(self) -> DVec4

source§

fn zxxz(self) -> DVec4

source§

fn zxxw(self) -> DVec4

source§

fn zxyx(self) -> DVec4

source§

fn zxyy(self) -> DVec4

source§

fn zxyz(self) -> DVec4

source§

fn zxyw(self) -> DVec4

source§

fn zxzx(self) -> DVec4

source§

fn zxzy(self) -> DVec4

source§

fn zxzz(self) -> DVec4

source§

fn zxzw(self) -> DVec4

source§

fn zxwx(self) -> DVec4

source§

fn zxwy(self) -> DVec4

source§

fn zxwz(self) -> DVec4

source§

fn zxww(self) -> DVec4

source§

fn zyxx(self) -> DVec4

source§

fn zyxy(self) -> DVec4

source§

fn zyxz(self) -> DVec4

source§

fn zyxw(self) -> DVec4

source§

fn zyyx(self) -> DVec4

source§

fn zyyy(self) -> DVec4

source§

fn zyyz(self) -> DVec4

source§

fn zyyw(self) -> DVec4

source§

fn zyzx(self) -> DVec4

source§

fn zyzy(self) -> DVec4

source§

fn zyzz(self) -> DVec4

source§

fn zyzw(self) -> DVec4

source§

fn zywx(self) -> DVec4

source§

fn zywy(self) -> DVec4

source§

fn zywz(self) -> DVec4

source§

fn zyww(self) -> DVec4

source§

fn zzxx(self) -> DVec4

source§

fn zzxy(self) -> DVec4

source§

fn zzxz(self) -> DVec4

source§

fn zzxw(self) -> DVec4

source§

fn zzyx(self) -> DVec4

source§

fn zzyy(self) -> DVec4

source§

fn zzyz(self) -> DVec4

source§

fn zzyw(self) -> DVec4

source§

fn zzzx(self) -> DVec4

source§

fn zzzy(self) -> DVec4

source§

fn zzzz(self) -> DVec4

source§

fn zzzw(self) -> DVec4

source§

fn zzwx(self) -> DVec4

source§

fn zzwy(self) -> DVec4

source§

fn zzwz(self) -> DVec4

source§

fn zzww(self) -> DVec4

source§

fn zwxx(self) -> DVec4

source§

fn zwxy(self) -> DVec4

source§

fn zwxz(self) -> DVec4

source§

fn zwxw(self) -> DVec4

source§

fn zwyx(self) -> DVec4

source§

fn zwyy(self) -> DVec4

source§

fn zwyz(self) -> DVec4

source§

fn zwyw(self) -> DVec4

source§

fn zwzx(self) -> DVec4

source§

fn zwzy(self) -> DVec4

source§

fn zwzz(self) -> DVec4

source§

fn zwzw(self) -> DVec4

source§

fn zwwx(self) -> DVec4

source§

fn zwwy(self) -> DVec4

source§

fn zwwz(self) -> DVec4

source§

fn zwww(self) -> DVec4

source§

fn wxxx(self) -> DVec4

source§

fn wxxy(self) -> DVec4

source§

fn wxxz(self) -> DVec4

source§

fn wxxw(self) -> DVec4

source§

fn wxyx(self) -> DVec4

source§

fn wxyy(self) -> DVec4

source§

fn wxyz(self) -> DVec4

source§

fn wxyw(self) -> DVec4

source§

fn wxzx(self) -> DVec4

source§

fn wxzy(self) -> DVec4

source§

fn wxzz(self) -> DVec4

source§

fn wxzw(self) -> DVec4

source§

fn wxwx(self) -> DVec4

source§

fn wxwy(self) -> DVec4

source§

fn wxwz(self) -> DVec4

source§

fn wxww(self) -> DVec4

source§

fn wyxx(self) -> DVec4

source§

fn wyxy(self) -> DVec4

source§

fn wyxz(self) -> DVec4

source§

fn wyxw(self) -> DVec4

source§

fn wyyx(self) -> DVec4

source§

fn wyyy(self) -> DVec4

source§

fn wyyz(self) -> DVec4

source§

fn wyyw(self) -> DVec4

source§

fn wyzx(self) -> DVec4

source§

fn wyzy(self) -> DVec4

source§

fn wyzz(self) -> DVec4

source§

fn wyzw(self) -> DVec4

source§

fn wywx(self) -> DVec4

source§

fn wywy(self) -> DVec4

source§

fn wywz(self) -> DVec4

source§

fn wyww(self) -> DVec4

source§

fn wzxx(self) -> DVec4

source§

fn wzxy(self) -> DVec4

source§

fn wzxz(self) -> DVec4

source§

fn wzxw(self) -> DVec4

source§

fn wzyx(self) -> DVec4

source§

fn wzyy(self) -> DVec4

source§

fn wzyz(self) -> DVec4

source§

fn wzyw(self) -> DVec4

source§

fn wzzx(self) -> DVec4

source§

fn wzzy(self) -> DVec4

source§

fn wzzz(self) -> DVec4

source§

fn wzzw(self) -> DVec4

source§

fn wzwx(self) -> DVec4

source§

fn wzwy(self) -> DVec4

source§

fn wzwz(self) -> DVec4

source§

fn wzww(self) -> DVec4

source§

fn wwxx(self) -> DVec4

source§

fn wwxy(self) -> DVec4

source§

fn wwxz(self) -> DVec4

source§

fn wwxw(self) -> DVec4

source§

fn wwyx(self) -> DVec4

source§

fn wwyy(self) -> DVec4

source§

fn wwyz(self) -> DVec4

source§

fn wwyw(self) -> DVec4

source§

fn wwzx(self) -> DVec4

source§

fn wwzy(self) -> DVec4

source§

fn wwzz(self) -> DVec4

source§

fn wwzw(self) -> DVec4

source§

fn wwwx(self) -> DVec4

source§

fn wwwy(self) -> DVec4

source§

fn wwwz(self) -> DVec4

source§

fn wwww(self) -> DVec4

source§

impl Zeroable for DVec4

§

fn zeroed() -> Self

source§

impl Copy for DVec4

source§

impl Pod for DVec4

source§

impl StructuralPartialEq for DVec4

Auto Trait Implementations§

§

impl RefUnwindSafe for DVec4

§

impl Send for DVec4

§

impl Sync for DVec4

§

impl Unpin for DVec4

§

impl UnwindSafe for DVec4

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CheckedBitPattern for Twhere T: AnyBitPattern,

§

type Bits = T

Self must have the same layout as the specified Bits except for the possible invalid bit patterns being checked during is_valid_bit_pattern.
§

fn is_valid_bit_pattern(_bits: &T) -> bool

If this function returns true, then it must be valid to reinterpret bits as &Self.
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> AnyBitPattern for Twhere T: Pod,

§

impl<T> NoUninit for Twhere T: Pod,