pub struct Mat3 {
pub a: f32,
pub b: f32,
pub c: f32,
pub d: f32,
pub e: f32,
pub f: f32,
pub g: f32,
pub h: f32,
pub i: f32,
}Expand description
Represents the 3x3 matrix with the following values:
| a, b, c | | d, e, f | | g, h, i |
Fields§
§a: f32§b: f32§c: f32§d: f32§e: f32§f: f32§g: f32§h: f32§i: f32Implementations§
Trait Implementations§
impl Copy for Mat3
Auto Trait Implementations§
impl Freeze for Mat3
impl RefUnwindSafe for Mat3
impl Send for Mat3
impl Sync for Mat3
impl Unpin for Mat3
impl UnwindSafe for Mat3
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more