#[repr(C)]pub struct Matrix {
pub x: Vector,
pub y: Vector,
}
Expand description
A 2x2 matrix.
Fields§
§x: Vector
The x axis of the matrix.
y: Vector
The y axis of the matrix.
Implementations§
Source§impl Matrix
impl Matrix
Sourcepub fn from_angle(angle: f32) -> Matrix
pub fn from_angle(angle: f32) -> Matrix
Create a new matrix from an angle.
Sourcepub const fn from_scale(scale: Vector) -> Matrix
pub const fn from_scale(scale: Vector) -> Matrix
Create a new matrix from a scale.
Sourcepub fn determinant(self) -> f32
pub fn determinant(self) -> f32
Compute the determinant of the matrix.
Trait Implementations§
impl Copy for Matrix
impl StructuralPartialEq for Matrix
Auto Trait Implementations§
impl Freeze for Matrix
impl RefUnwindSafe for Matrix
impl Send for Matrix
impl Sync for Matrix
impl Unpin for Matrix
impl UnwindSafe for Matrix
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