Struct bevy_math::Affine3

source ·
pub struct Affine3 {
    pub matrix3: Mat3,
    pub translation: Vec3,
}
Expand description

Reduced-size version of glam::Affine3A for use when storage has significant performance impact. Convert to glam::Affine3A to do non-trivial calculations.

Fields§

§matrix3: Mat3

Scaling, rotation, shears, and other non-translation affine transforms

§translation: Vec3

Translation

Implementations§

source§

impl Affine3

source

pub fn to_transpose(&self) -> [Vec4; 3]

Calculates the transpose of the affine 4x3 matrix to a 3x4 and formats it for packing into GPU buffers

source

pub fn inverse_transpose_3x3(&self) -> ([Vec4; 2], f32)

Calculates the inverse transpose of the 3x3 matrix and formats it for packing into GPU buffers

Trait Implementations§

source§

impl From<&Affine3> for Affine3A

source§

fn from(affine3: &Affine3) -> Self

Converts to this type from the input type.
source§

impl From<&Affine3A> for Affine3

source§

fn from(affine: &Affine3A) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

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, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
source§

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

Performs the conversion.