Struct bevy::math::f32::Vec3

source ·
pub struct Vec3 {
    pub x: f32,
    pub y: f32,
    pub z: f32,
}
Expand description

A 3-dimensional vector.

Fields§

§x: f32§y: f32§z: f32

Implementations§

source§

impl Vec3

source

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

All zeroes.

source

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

All ones.

source

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

All negative ones.

source

pub const NAN: Vec3 = Self::splat(f32::NAN)

All NAN.

source

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

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

source

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

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

source

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

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

source

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

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

source

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

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

source

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

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

source

pub const AXES: [Vec3; 3] = [Self::X, Self::Y, Self::Z]

The unit axes.

source

pub const fn new(x: f32, y: f32, z: f32) -> Vec3

Creates a new vector.

source

pub const fn splat(v: f32) -> Vec3

Creates a vector with all elements set to v.

source

pub fn select(mask: BVec3, if_true: Vec3, if_false: Vec3) -> Vec3

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: [f32; 3]) -> Vec3

Creates a new vector from an array.

source

pub const fn to_array(&self) -> [f32; 3]

[x, y, z]

source

pub const fn from_slice(slice: &[f32]) -> Vec3

Creates a vector from the first 3 values in slice.

Panics

Panics if slice is less than 3 elements long.

source

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

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

Panics

Panics if slice is less than 3 elements long.

source

pub fn extend(self, w: f32) -> Vec4

Creates a 4D vector from self and the given w value.

source

pub fn truncate(self) -> Vec2

Creates a 2D vector from the x and y elements of self, discarding z.

Truncation may also be performed by using self.xy() or Vec2::from().

source

pub fn dot(self, rhs: Vec3) -> f32

Computes the dot product of self and rhs.

source

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

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

source

pub fn cross(self, rhs: Vec3) -> Vec3

Computes the cross product of self and rhs.

source

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

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: Vec3) -> Vec3

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: Vec3, max: Vec3) -> Vec3

Component-wise clamping of values, similar to f32::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) -> f32

Returns the horizontal minimum of self.

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

source

pub fn max_element(self) -> f32

Returns the horizontal maximum of self.

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

source

pub fn cmpeq(self, rhs: Vec3) -> BVec3

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: Vec3) -> BVec3

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: Vec3) -> BVec3

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: Vec3) -> BVec3

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: Vec3) -> BVec3

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: Vec3) -> BVec3

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) -> Vec3

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

source

pub fn signum(self) -> Vec3

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: Vec3) -> Vec3

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 3 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) -> BVec3

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) -> f32

Computes the length of self.

source

pub fn length_squared(self) -> f32

Computes the squared length of self.

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

source

pub fn length_recip(self) -> f32

Computes 1.0 / length().

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

source

pub fn distance(self, rhs: Vec3) -> f32

Computes the Euclidean distance between two points in space.

source

pub fn distance_squared(self, rhs: Vec3) -> f32

Compute the squared euclidean distance between two points in space.

source

pub fn normalize(self) -> Vec3

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<Vec3>

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) -> Vec3

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: Vec3) -> Vec3

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: Vec3) -> Vec3

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: Vec3) -> Vec3

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: Vec3) -> Vec3

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) -> Vec3

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) -> Vec3

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

source

pub fn ceil(self) -> Vec3

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

source

pub fn fract(self) -> Vec3

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) -> Vec3

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

source

pub fn powf(self, n: f32) -> Vec3

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

source

pub fn recip(self) -> Vec3

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

source

pub fn lerp(self, rhs: Vec3, s: f32) -> Vec3

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: Vec3, max_abs_diff: f32) -> 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: f32, max: f32) -> Vec3

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: f32) -> Vec3

Returns a vector with a length no more than max

source

pub fn clamp_length_min(self, min: f32) -> Vec3

Returns a vector with a length no less than min

source

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

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 angle_between(self, rhs: Vec3) -> f32

Returns the angle (in radians) between two vectors.

The input vectors do not need to be unit length however they must be non-zero.

source

pub fn any_orthogonal_vector(&self) -> Vec3

Returns some vector that is orthogonal to the given one.

The input vector must be finite and non-zero.

The output vector is not necessarily unit-length. For that use Self::any_orthonormal_vector instead.

source

pub fn any_orthonormal_vector(&self) -> Vec3

Returns any unit-length vector that is orthogonal to the given one. The input vector must be finite and non-zero.

Panics

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

source

pub fn any_orthonormal_pair(&self) -> (Vec3, Vec3)

Given a unit-length vector return two other vectors that together form an orthonormal basis. That is, all three vectors are orthogonal to each other and are normalized.

Panics

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

source

pub fn as_dvec3(&self) -> DVec3

Casts all elements of self to f64.

source

pub fn as_ivec3(&self) -> IVec3

Casts all elements of self to i32.

source

pub fn as_uvec3(&self) -> UVec3

Casts all elements of self to u32.

Trait Implementations§

source§

impl Add<Vec3> for Vec3

§

type Output = Vec3

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<f32> for Vec3

§

type Output = Vec3

The resulting type after applying the + operator.
source§

fn add(self, rhs: f32) -> Vec3

Performs the + operation. Read more
source§

impl AddAssign<Vec3> for Vec3

source§

fn add_assign(&mut self, rhs: Vec3)

Performs the += operation. Read more
source§

impl AddAssign<f32> for Vec3

source§

fn add_assign(&mut self, rhs: f32)

Performs the += operation. Read more
source§

impl AsMut<[f32; 3]> for Vec3

source§

fn as_mut(&mut self) -> &mut [f32; 3]

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

impl AsMutVectorParts<f32, 3> for Vec3where Vec3: AsMut<[f32; 3]>, f32: VectorScalar,

§

fn as_mut_parts(&mut self) -> &mut [f32; 3]

source§

impl AsRef<[f32; 3]> for Vec3

source§

fn as_ref(&self) -> &[f32; 3]

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

impl AsRefVectorParts<f32, 3> for Vec3where Vec3: AsRef<[f32; 3]>, f32: VectorScalar,

§

fn as_ref_parts(&self) -> &[f32; 3]

source§

impl Clone for Vec3

source§

fn clone(&self) -> Vec3

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
§

impl CreateFrom for Vec3where Vec3: FromVectorParts<f32, 3>, f32: VectorScalar + CreateFrom,

§

fn create_from<B>(reader: &mut Reader<B>) -> Vec3where B: BufferRef,

source§

impl Debug for Vec3

source§

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

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

impl Default for Vec3

source§

fn default() -> Vec3

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

impl<'de> Deserialize<'de> for Vec3

source§

fn deserialize<D>( deserializer: D ) -> Result<Vec3, <D as Deserializer<'de>>::Error>where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for Vec3

source§

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

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

impl Div<Vec3> for Vec3

§

type Output = Vec3

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<f32> for Vec3

§

type Output = Vec3

The resulting type after applying the / operator.
source§

fn div(self, rhs: f32) -> Vec3

Performs the / operation. Read more
source§

impl DivAssign<Vec3> for Vec3

source§

fn div_assign(&mut self, rhs: Vec3)

Performs the /= operation. Read more
source§

impl DivAssign<f32> for Vec3

source§

fn div_assign(&mut self, rhs: f32)

Performs the /= operation. Read more
source§

impl From<[f32; 3]> for Vec3

source§

fn from(a: [f32; 3]) -> Vec3

Converts to this type from the input type.
source§

impl From<(Vec2, f32)> for Vec3

source§

fn from(_: (Vec2, f32)) -> Vec3

Converts to this type from the input type.
source§

impl From<(f32, f32, f32)> for Vec3

source§

fn from(t: (f32, f32, f32)) -> Vec3

Converts to this type from the input type.
source§

impl From<Vec3> for [f32; 3]

source§

fn from(v: Vec3) -> [f32; 3]

Converts to this type from the input type.
source§

impl From<Vec3> for (f32, f32, f32)

source§

fn from(v: Vec3) -> (f32, f32, f32)

Converts to this type from the input type.
source§

impl From<Vec3> for Vec3A

source§

fn from(v: Vec3) -> Vec3A

Converts to this type from the input type.
source§

impl From<Vec3A> for Vec3

source§

fn from(v: Vec3A) -> Vec3

Converts to this type from the input type.
§

impl FromReflect for Vec3where f32: FromReflect,

§

fn from_reflect(reflect: &(dyn Reflect + 'static)) -> Option<Vec3>

Constructs a concrete instance of Self from a reflected value.
§

fn take_from_reflect( reflect: Box<dyn Reflect + 'static, Global> ) -> Result<Self, Box<dyn Reflect + 'static, Global>>

Attempts to downcast the given value to Self using, constructing the value using from_reflect if that fails. Read more
§

impl FromVectorParts<f32, 3> for Vec3where Vec3: From<[f32; 3]>, f32: VectorScalar,

§

fn from_parts(parts: [f32; 3]) -> Vec3

§

impl GetTypeRegistration for Vec3where f32: Reflect,

source§

impl Index<usize> for Vec3

§

type Output = f32

The returned type after indexing.
source§

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

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

impl IndexMut<usize> for Vec3

source§

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

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

impl Mul<Vec3> for Color

§

type Output = Color

The resulting type after applying the * operator.
§

fn mul(self, rhs: Vec3) -> <Color as Mul<Vec3>>::Output

Performs the * operation. Read more
§

impl Mul<Vec3> for GlobalTransform

§

type Output = Vec3

The resulting type after applying the * operator.
§

fn mul(self, value: Vec3) -> <GlobalTransform as Mul<Vec3>>::Output

Performs the * operation. Read more
source§

impl Mul<Vec3> for Mat3

§

type Output = Vec3

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Vec3) -> <Mat3 as Mul<Vec3>>::Output

Performs the * operation. Read more
source§

impl Mul<Vec3> for Mat3A

§

type Output = Vec3

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<Vec3> for Quat

source§

fn mul(self, rhs: Vec3) -> <Quat as Mul<Vec3>>::Output

Multiplies a quaternion and a 3D vector, returning the rotated vector.

Panics

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

§

type Output = Vec3

The resulting type after applying the * operator.
§

impl Mul<Vec3> for Transform

§

type Output = Vec3

The resulting type after applying the * operator.
§

fn mul(self, value: Vec3) -> <Transform as Mul<Vec3>>::Output

Performs the * operation. Read more
source§

impl Mul<Vec3> for Vec3

§

type Output = Vec3

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<f32> for Vec3

§

type Output = Vec3

The resulting type after applying the * operator.
source§

fn mul(self, rhs: f32) -> Vec3

Performs the * operation. Read more
§

impl MulAssign<Vec3> for Color

§

fn mul_assign(&mut self, rhs: Vec3)

Performs the *= operation. Read more
source§

impl MulAssign<Vec3> for Vec3

source§

fn mul_assign(&mut self, rhs: Vec3)

Performs the *= operation. Read more
source§

impl MulAssign<f32> for Vec3

source§

fn mul_assign(&mut self, rhs: f32)

Performs the *= operation. Read more
source§

impl Neg for Vec3

§

type Output = Vec3

The resulting type after applying the - operator.
source§

fn neg(self) -> Vec3

Performs the unary - operation. Read more
source§

impl PartialEq<Vec3> for Vec3

source§

fn eq(&self, other: &Vec3) -> 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 Vec3> for Vec3

source§

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

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

impl Product<Vec3> for Vec3

source§

fn product<I>(iter: I) -> Vec3where I: Iterator<Item = Vec3>,

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

impl ReadFrom for Vec3where Vec3: AsMutVectorParts<f32, 3>, f32: VectorScalar + ReadFrom,

§

fn read_from<B>(&mut self, reader: &mut Reader<B>)where B: BufferRef,

§

impl Reflect for Vec3where f32: Reflect,

§

fn type_name(&self) -> &str

Returns the type name of the underlying type.
§

fn get_type_info(&self) -> &'static TypeInfo

Returns the TypeInfo of the underlying type. Read more
§

fn into_any(self: Box<Vec3, Global>) -> Box<dyn Any + 'static, Global>

Returns the value as a Box<dyn Any>.
§

fn as_any(&self) -> &(dyn Any + 'static)

Returns the value as a &dyn Any.
§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Returns the value as a &mut dyn Any.
§

fn into_reflect(self: Box<Vec3, Global>) -> Box<dyn Reflect + 'static, Global>

Casts this type to a boxed reflected value.
§

fn as_reflect(&self) -> &(dyn Reflect + 'static)

Casts this type to a reflected value.
§

fn as_reflect_mut(&mut self) -> &mut (dyn Reflect + 'static)

Casts this type to a mutable reflected value.
§

fn clone_value(&self) -> Box<dyn Reflect + 'static, Global>

Clones the value as a Reflect trait object. Read more
§

fn set( &mut self, value: Box<dyn Reflect + 'static, Global> ) -> Result<(), Box<dyn Reflect + 'static, Global>>

Performs a type-checked assignment of a reflected value to this value. Read more
§

fn apply(&mut self, value: &(dyn Reflect + 'static))

Applies a reflected value to this value. Read more
§

fn reflect_ref(&self) -> ReflectRef<'_>

Returns an enumeration of “kinds” of type. Read more
§

fn reflect_mut(&mut self) -> ReflectMut<'_>

Returns a mutable enumeration of “kinds” of type. Read more
§

fn reflect_owned(self: Box<Vec3, Global>) -> ReflectOwned

Returns an owned enumeration of “kinds” of type. Read more
§

fn reflect_partial_eq(&self, value: &(dyn Reflect + 'static)) -> Option<bool>

Returns a “partial equality” comparison result. Read more
§

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

Debug formatter for the value. Read more
§

fn reflect_hash(&self) -> Option<u64>

Returns a hash of the value (which includes the type). Read more
§

fn serializable(&self) -> Option<Serializable<'_>>

Returns a serializable version of the value. Read more
source§

impl Rem<Vec3> for Vec3

§

type Output = Vec3

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl Rem<f32> for Vec3

§

type Output = Vec3

The resulting type after applying the % operator.
source§

fn rem(self, rhs: f32) -> Vec3

Performs the % operation. Read more
source§

impl RemAssign<Vec3> for Vec3

source§

fn rem_assign(&mut self, rhs: Vec3)

Performs the %= operation. Read more
source§

impl RemAssign<f32> for Vec3

source§

fn rem_assign(&mut self, rhs: f32)

Performs the %= operation. Read more
source§

impl Serialize for Vec3

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where S: Serializer,

Serialize this value into the given Serde serializer. Read more
§

impl ShaderSize for Vec3where f32: ShaderSize,

§

const SHADER_SIZE: NonZeroU64 = Self::METADATA.min_size().0

Represents WGSL Size (equivalent to ShaderType::min_size)
§

impl ShaderType for Vec3where f32: ShaderSize,

§

fn min_size() -> NonZeroU64

Represents the minimum size of Self (equivalent to GPUBufferBindingLayout.minBindingSize) Read more
§

fn size(&self) -> NonZeroU64

Returns the size of Self at runtime Read more
§

fn assert_uniform_compat()

§

impl Struct for Vec3where f32: Reflect,

§

fn field(&self, name: &str) -> Option<&(dyn Reflect + 'static)>

Returns a reference to the value of the field named name as a &dyn Reflect.
§

fn field_mut(&mut self, name: &str) -> Option<&mut (dyn Reflect + 'static)>

Returns a mutable reference to the value of the field named name as a &mut dyn Reflect.
§

fn field_at(&self, index: usize) -> Option<&(dyn Reflect + 'static)>

Returns a reference to the value of the field with index index as a &dyn Reflect.
§

fn field_at_mut(&mut self, index: usize) -> Option<&mut (dyn Reflect + 'static)>

Returns a mutable reference to the value of the field with index index as a &mut dyn Reflect.
§

fn name_at(&self, index: usize) -> Option<&str>

Returns the name of the field with index index.
§

fn field_len(&self) -> usize

Returns the number of fields in the struct.
§

fn iter_fields(&self) -> FieldIter<'_>

Returns an iterator over the values of the reflectable fields for this struct.
§

fn clone_dynamic(&self) -> DynamicStruct

Clones the struct into a DynamicStruct.
source§

impl Sub<Vec3> for Vec3

§

type Output = Vec3

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl Sub<f32> for Vec3

§

type Output = Vec3

The resulting type after applying the - operator.
source§

fn sub(self, rhs: f32) -> Vec3

Performs the - operation. Read more
source§

impl SubAssign<Vec3> for Vec3

source§

fn sub_assign(&mut self, rhs: Vec3)

Performs the -= operation. Read more
source§

impl SubAssign<f32> for Vec3

source§

fn sub_assign(&mut self, rhs: f32)

Performs the -= operation. Read more
source§

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

source§

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

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

impl Sum<Vec3> for Vec3

source§

fn sum<I>(iter: I) -> Vec3where I: Iterator<Item = Vec3>,

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

impl Typed for Vec3where f32: Reflect,

§

fn type_info() -> &'static TypeInfo

Returns the compile-time info for the underlying type.
source§

impl Vec3Swizzles for Vec3

§

type Vec2 = Vec2

§

type Vec4 = Vec4

source§

fn xx(self) -> Vec2

source§

fn xy(self) -> Vec2

source§

fn xz(self) -> Vec2

source§

fn yx(self) -> Vec2

source§

fn yy(self) -> Vec2

source§

fn yz(self) -> Vec2

source§

fn zx(self) -> Vec2

source§

fn zy(self) -> Vec2

source§

fn zz(self) -> Vec2

source§

fn xxx(self) -> Vec3

source§

fn xxy(self) -> Vec3

source§

fn xxz(self) -> Vec3

source§

fn xyx(self) -> Vec3

source§

fn xyy(self) -> Vec3

source§

fn xyz(self) -> Vec3

source§

fn xzx(self) -> Vec3

source§

fn xzy(self) -> Vec3

source§

fn xzz(self) -> Vec3

source§

fn yxx(self) -> Vec3

source§

fn yxy(self) -> Vec3

source§

fn yxz(self) -> Vec3

source§

fn yyx(self) -> Vec3

source§

fn yyy(self) -> Vec3

source§

fn yyz(self) -> Vec3

source§

fn yzx(self) -> Vec3

source§

fn yzy(self) -> Vec3

source§

fn yzz(self) -> Vec3

source§

fn zxx(self) -> Vec3

source§

fn zxy(self) -> Vec3

source§

fn zxz(self) -> Vec3

source§

fn zyx(self) -> Vec3

source§

fn zyy(self) -> Vec3

source§

fn zyz(self) -> Vec3

source§

fn zzx(self) -> Vec3

source§

fn zzy(self) -> Vec3

source§

fn zzz(self) -> Vec3

source§

fn xxxx(self) -> Vec4

source§

fn xxxy(self) -> Vec4

source§

fn xxxz(self) -> Vec4

source§

fn xxyx(self) -> Vec4

source§

fn xxyy(self) -> Vec4

source§

fn xxyz(self) -> Vec4

source§

fn xxzx(self) -> Vec4

source§

fn xxzy(self) -> Vec4

source§

fn xxzz(self) -> Vec4

source§

fn xyxx(self) -> Vec4

source§

fn xyxy(self) -> Vec4

source§

fn xyxz(self) -> Vec4

source§

fn xyyx(self) -> Vec4

source§

fn xyyy(self) -> Vec4

source§

fn xyyz(self) -> Vec4

source§

fn xyzx(self) -> Vec4

source§

fn xyzy(self) -> Vec4

source§

fn xyzz(self) -> Vec4

source§

fn xzxx(self) -> Vec4

source§

fn xzxy(self) -> Vec4

source§

fn xzxz(self) -> Vec4

source§

fn xzyx(self) -> Vec4

source§

fn xzyy(self) -> Vec4

source§

fn xzyz(self) -> Vec4

source§

fn xzzx(self) -> Vec4

source§

fn xzzy(self) -> Vec4

source§

fn xzzz(self) -> Vec4

source§

fn yxxx(self) -> Vec4

source§

fn yxxy(self) -> Vec4

source§

fn yxxz(self) -> Vec4

source§

fn yxyx(self) -> Vec4

source§

fn yxyy(self) -> Vec4

source§

fn yxyz(self) -> Vec4

source§

fn yxzx(self) -> Vec4

source§

fn yxzy(self) -> Vec4

source§

fn yxzz(self) -> Vec4

source§

fn yyxx(self) -> Vec4

source§

fn yyxy(self) -> Vec4

source§

fn yyxz(self) -> Vec4

source§

fn yyyx(self) -> Vec4

source§

fn yyyy(self) -> Vec4

source§

fn yyyz(self) -> Vec4

source§

fn yyzx(self) -> Vec4

source§

fn yyzy(self) -> Vec4

source§

fn yyzz(self) -> Vec4

source§

fn yzxx(self) -> Vec4

source§

fn yzxy(self) -> Vec4

source§

fn yzxz(self) -> Vec4

source§

fn yzyx(self) -> Vec4

source§

fn yzyy(self) -> Vec4

source§

fn yzyz(self) -> Vec4

source§

fn yzzx(self) -> Vec4

source§

fn yzzy(self) -> Vec4

source§

fn yzzz(self) -> Vec4

source§

fn zxxx(self) -> Vec4

source§

fn zxxy(self) -> Vec4

source§

fn zxxz(self) -> Vec4

source§

fn zxyx(self) -> Vec4

source§

fn zxyy(self) -> Vec4

source§

fn zxyz(self) -> Vec4

source§

fn zxzx(self) -> Vec4

source§

fn zxzy(self) -> Vec4

source§

fn zxzz(self) -> Vec4

source§

fn zyxx(self) -> Vec4

source§

fn zyxy(self) -> Vec4

source§

fn zyxz(self) -> Vec4

source§

fn zyyx(self) -> Vec4

source§

fn zyyy(self) -> Vec4

source§

fn zyyz(self) -> Vec4

source§

fn zyzx(self) -> Vec4

source§

fn zyzy(self) -> Vec4

source§

fn zyzz(self) -> Vec4

source§

fn zzxx(self) -> Vec4

source§

fn zzxy(self) -> Vec4

source§

fn zzxz(self) -> Vec4

source§

fn zzyx(self) -> Vec4

source§

fn zzyy(self) -> Vec4

source§

fn zzyz(self) -> Vec4

source§

fn zzzx(self) -> Vec4

source§

fn zzzy(self) -> Vec4

source§

fn zzzz(self) -> Vec4

§

impl WriteInto for Vec3where Vec3: AsRefVectorParts<f32, 3>, f32: VectorScalar + WriteInto,

§

fn write_into<B>(&self, writer: &mut Writer<B>)where B: BufferMut,

source§

impl Zeroable for Vec3

§

fn zeroed() -> Self

source§

impl Copy for Vec3

source§

impl Pod for Vec3

§

impl Point for Vec3

source§

impl StructuralPartialEq for Vec3

Auto Trait Implementations§

§

impl RefUnwindSafe for Vec3

§

impl Send for Vec3

§

impl Sync for Vec3

§

impl Unpin for Vec3

§

impl UnwindSafe for Vec3

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T, U> AsBindGroupShaderType<U> for Twhere U: ShaderType, &'a T: for<'a> Into<U>,

§

fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U

Return the T ShaderType for self. When used in AsBindGroup derives, it is safe to assume that all images in self exist.
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.
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

§

impl<T> Downcast for Twhere T: Any,

§

fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
§

impl<T> DowncastSync for Twhere T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send + 'static>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<S> FromSample<S> for S

§

fn from_sample_(s: S) -> S

§

impl<T> FromWorld for Twhere T: Default,

§

fn from_world(_world: &mut World) -> T

Creates Self using data from the given World
§

impl<S> GetField for Swhere S: Struct,

§

fn get_field<T>(&self, name: &str) -> Option<&T>where T: Reflect,

Returns a reference to the value of the field named name, downcast to T.
§

fn get_field_mut<T>(&mut self, name: &str) -> Option<&mut T>where T: Reflect,

Returns a mutable reference to the value of the field named name, downcast to T.
§

impl<T> GetPath for Twhere T: Reflect,

§

fn reflect_path<'r, 'p>( &'r self, path: &'p str ) -> Result<&'r (dyn Reflect + 'static), ReflectPathError<'p>>

Returns a reference to the value specified by path. Read more
§

fn reflect_path_mut<'r, 'p>( &'r mut self, path: &'p str ) -> Result<&'r mut (dyn Reflect + 'static), ReflectPathError<'p>>

Returns a mutable reference to the value specified by path. Read more
§

fn path<T, 'r, 'p>( &'r self, path: &'p str ) -> Result<&'r T, ReflectPathError<'p>>where T: Reflect,

Returns a statically typed reference to the value specified by path. Read more
§

fn path_mut<T, 'r, 'p>( &'r mut self, path: &'p str ) -> Result<&'r mut T, ReflectPathError<'p>>where T: Reflect,

Returns a statically typed mutable reference to the value specified by path. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> Serialize for Twhere T: Serialize + ?Sized,

source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>

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
§

impl<T, U> ToSample<U> for Twhere U: FromSample<T>,

§

fn to_sample_(self) -> U

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> TypeData for Twhere T: 'static + Send + Sync + Clone,

§

fn clone_type_data(&self) -> Box<dyn TypeData + 'static, Global>

§

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
§

impl<T> AnyBitPattern for Twhere T: Pod,

source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,

§

impl<S, T> Duplex<S> for Twhere T: FromSample<S> + ToSample<S>,

§

impl<T> Event for Twhere T: Send + Sync + 'static,

§

impl<T> NoUninit for Twhere T: Pod,

source§

impl<T, Rhs> NumAssignOps<Rhs> for Twhere T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,

source§

impl<T, Rhs, Output> NumOps<Rhs, Output> for Twhere T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,