pub struct Mat22 {
pub cx: Vec2,
pub cy: Vec2,
}Expand description
A 2-by-2 Matrix stored as columns
Fields§
§cx: Vec2§cy: Vec2Trait Implementations§
impl Copy for Mat22
impl StructuralPartialEq for Mat22
Auto Trait Implementations§
impl Freeze for Mat22
impl RefUnwindSafe for Mat22
impl Send for Mat22
impl Sync for Mat22
impl Unpin for Mat22
impl UnsafeUnpin for Mat22
impl UnwindSafe for Mat22
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