pub struct Mat22 {
pub x1: f32,
pub y1: f32,
pub x2: f32,
pub y2: f32,
}
Fields§
§x1: f32
§y1: f32
§x2: f32
§y2: f32
Implementations§
Trait Implementations§
Source§impl AddAssign<f32> for Mat22
impl AddAssign<f32> for Mat22
Source§fn add_assign(&mut self, rhs: f32)
fn add_assign(&mut self, rhs: f32)
Performs the
+=
operation. Read moreSource§impl AddAssign for Mat22
impl AddAssign for Mat22
Source§fn add_assign(&mut self, rhs: Mat22)
fn add_assign(&mut self, rhs: Mat22)
Performs the
+=
operation. Read moreSource§impl DivAssign<f32> for Mat22
impl DivAssign<f32> for Mat22
Source§fn div_assign(&mut self, rhs: f32)
fn div_assign(&mut self, rhs: f32)
Performs the
/=
operation. Read moreSource§impl MulAssign<f32> for Mat22
impl MulAssign<f32> for Mat22
Source§fn mul_assign(&mut self, rhs: f32)
fn mul_assign(&mut self, rhs: f32)
Performs the
*=
operation. Read moreSource§impl MulAssign for Mat22
impl MulAssign for Mat22
Source§fn mul_assign(&mut self, rhs: Mat22)
fn mul_assign(&mut self, rhs: Mat22)
Performs the
*=
operation. Read moreSource§impl SubAssign<f32> for Mat22
impl SubAssign<f32> for Mat22
Source§fn sub_assign(&mut self, rhs: f32)
fn sub_assign(&mut self, rhs: f32)
Performs the
-=
operation. Read moreSource§impl SubAssign for Mat22
impl SubAssign for Mat22
Source§fn sub_assign(&mut self, rhs: Mat22)
fn sub_assign(&mut self, rhs: Mat22)
Performs the
-=
operation. Read moreimpl Copy 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 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