#[repr(C)]pub struct Mat3<T> {
pub cols: [Vec3<T>; 3],
}Expand description
3x3 matrix (column-major).
Fields§
§cols: [Vec3<T>; 3]Implementations§
Trait Implementations§
impl<T: Copy> Copy for Mat3<T>
impl<T: PartialEq> StructuralPartialEq for Mat3<T>
Auto Trait Implementations§
impl<T> Freeze for Mat3<T>where
T: Freeze,
impl<T> RefUnwindSafe for Mat3<T>where
T: RefUnwindSafe,
impl<T> Send for Mat3<T>where
T: Send,
impl<T> Sync for Mat3<T>where
T: Sync,
impl<T> Unpin for Mat3<T>where
T: Unpin,
impl<T> UnsafeUnpin for Mat3<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for Mat3<T>where
T: UnwindSafe,
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