#[repr(C)]pub struct Matrix33f {
pub data: [[f32; 3]; 3],
}Expand description
Row-major, matching the C++ MatrixMethods storage order.
Fields§
§data: [[f32; 3]; 3]Implementations§
Trait Implementations§
impl Copy for Matrix33f
impl StructuralPartialEq for Matrix33f
Auto Trait Implementations§
impl Freeze for Matrix33f
impl RefUnwindSafe for Matrix33f
impl Send for Matrix33f
impl Sync for Matrix33f
impl Unpin for Matrix33f
impl UnsafeUnpin for Matrix33f
impl UnwindSafe for Matrix33f
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