Struct freya_engine::prelude::M44

#[repr(C)]
pub struct M44 { /* private fields */ }

Implementations§

§

impl M44

pub const fn new_identity() -> M44

pub fn concat(a: &M44, b: &M44) -> M44

pub const fn nan() -> M44

pub const fn new( m0: f32, m4: f32, m8: f32, m12: f32, m1: f32, m5: f32, m9: f32, m13: f32, m2: f32, m6: f32, m10: f32, m14: f32, m3: f32, m7: f32, m11: f32, m15: f32, ) -> M44

pub fn rows(r0: &V4, r1: &V4, r2: &V4, r3: &V4) -> M44

pub fn cols(c0: &V4, c1: &V4, c2: &V4, c3: &V4) -> M44

pub fn row_major(r: &[f32; 16]) -> M44

pub fn col_major(c: &[f32; 16]) -> M44

pub fn translate(x: f32, y: f32, z: f32) -> M44

pub fn scale(x: f32, y: f32, z: f32) -> M44

pub fn rotate(axis: V3, radians: f32) -> M44

pub fn rect_to_rect(src: impl AsRef<Rect>, dst: impl AsRef<Rect>) -> M44

pub fn look_at(eye: &V3, center: &V3, up: &V3) -> M44

pub fn perspective(near: f32, far: f32, angle: f32) -> M44

pub fn get_col_major(&self, v: &mut [f32; 16])

pub fn get_row_major(&self, v: &mut [f32; 16])

pub fn set_col_major(&mut self, v: &[f32; 16]) -> &mut M44

👎Deprecated since 0.30.0: use M44::col_major() instead

pub fn set_row_major(&mut self, v: &[f32; 16]) -> &mut M44

👎Deprecated since 0.30.0: use M44::row_major() instead

pub fn set_44( &mut self, m0: f32, m1: f32, m2: f32, m3: f32, m4: f32, m5: f32, m6: f32, m7: f32, m8: f32, m9: f32, m10: f32, m11: f32, m12: f32, m13: f32, m14: f32, m15: f32, ) -> &mut M44

👎Deprecated since 0.30.0: use Self::new() instead

pub fn rc(&self, r: usize, c: usize) -> f32

pub fn set_rc(&mut self, r: usize, c: usize, value: f32)

pub fn row(&self, i: usize) -> V4

pub fn col(&self, i: usize) -> V4

pub fn set_row(&mut self, i: usize, v: &V4)

pub fn set_col(&mut self, i: usize, v: &V4)

pub fn set_identity(&mut self) -> &mut M44

pub fn set_translate(&mut self, x: f32, y: f32, z: f32) -> &mut M44

pub fn set_scale(&mut self, x: f32, y: f32, z: f32) -> &mut M44

pub fn set_rotate_unit_sin_cos( &mut self, axis: V3, sin_angle: f32, cos_angle: f32, ) -> &mut M44

pub fn set_rotate_unit(&mut self, axis: V3, radians: f32) -> &mut M44

pub fn set_rotate(&mut self, axis: V3, radians: f32) -> &mut M44

pub fn set_concat_16(&mut self, a: &M44, col_major: &[f32; 16]) -> &mut M44

👎Deprecated since 0.30.0: use M44::col_major() and M44::set_concat()

pub fn set_concat(&mut self, a: &M44, b: &M44) -> &mut M44

pub fn pre_concat_16(&mut self, col_major: &[f32; 16]) -> &mut M44

👎Deprecated since 0.30.0: use M44::col_major() and M44::pre_concat()

pub fn pre_concat(&mut self, m: &M44) -> &mut M44

pub fn post_concat(&mut self, m: &M44) -> &mut M44

pub fn normalize_perspective(&mut self)

pub fn is_finite(&self) -> bool

pub fn invert(&self) -> Option<M44>

pub fn transpose(&self) -> M44

pub fn dump(&self)

pub fn map(&self, x: f32, y: f32, z: f32, w: f32) -> V4

pub fn to_m33(&self) -> Matrix

pub fn pre_translate( &mut self, x: f32, y: f32, z: impl Into<Option<f32>>, ) -> &mut M44

pub fn post_translate( &mut self, x: f32, y: f32, z: impl Into<Option<f32>>, ) -> &mut M44

pub fn pre_scale(&mut self, x: f32, y: f32) -> &mut M44

pub fn pre_scale_xyz(&mut self, x: f32, y: f32, z: f32) -> &mut M44

Trait Implementations§

§

impl Clone for M44

§

fn clone(&self) -> M44

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 Debug for M44

§

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

Formats the value using the given formatter. Read more
§

impl Default for M44

§

fn default() -> M44

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

impl From<&Matrix> for M44

§

fn from(src: &Matrix) -> M44

Converts to this type from the input type.
§

impl From<Matrix> for M44

§

fn from(m: Matrix) -> M44

Converts to this type from the input type.
§

impl Mul<V3> for &M44

§

type Output = V3

The resulting type after applying the * operator.
§

fn mul(self, v: V3) -> <&M44 as Mul<V3>>::Output

Performs the * operation. Read more
§

impl Mul<V4> for &M44

§

type Output = V4

The resulting type after applying the * operator.
§

fn mul(self, v: V4) -> <&M44 as Mul<V4>>::Output

Performs the * operation. Read more
§

impl Mul for &M44

§

type Output = M44

The resulting type after applying the * operator.
§

fn mul(self, m: &M44) -> <&M44 as Mul>::Output

Performs the * operation. Read more
§

impl PartialEq for M44

§

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

Auto Trait Implementations§

§

impl Freeze for M44

§

impl RefUnwindSafe for M44

§

impl Send for M44

§

impl Sync for M44

§

impl Unpin for M44

§

impl UnwindSafe for M44

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.

§

impl<N, T> NativeTransmutableWrapper<N> for T
where T: NativeTransmutable<N>,

§

fn wrap(native: N) -> T

§

fn unwrap(self) -> N

§

fn inner(&self) -> &N

§

fn inner_mut(&mut self) -> &mut N

source§

impl<T> ToOwned for T
where 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, 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.