#[repr(C)]pub struct F32Matrix3x2(pub F32Vector2, pub F32Vector2, pub F32Vector2);Expand description
Column-major 3x2 float matrix.
Tuple Fields§
§0: F32Vector2§1: F32Vector2§2: F32Vector2Implementations§
Source§impl F32Matrix3x2
impl F32Matrix3x2
Sourcepub fn new(c0: F32Vector2, c1: F32Vector2, c2: F32Vector2) -> Self
pub fn new(c0: F32Vector2, c1: F32Vector2, c2: F32Vector2) -> Self
Construct from an array of row/column vectors.
Trait Implementations§
Source§impl Clone for F32Matrix3x2
impl Clone for F32Matrix3x2
Source§fn clone(&self) -> F32Matrix3x2
fn clone(&self) -> F32Matrix3x2
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for F32Matrix3x2
impl Debug for F32Matrix3x2
Source§impl PartialEq for F32Matrix3x2
impl PartialEq for F32Matrix3x2
impl Copy for F32Matrix3x2
impl StructuralPartialEq for F32Matrix3x2
Auto Trait Implementations§
impl Freeze for F32Matrix3x2
impl RefUnwindSafe for F32Matrix3x2
impl Send for F32Matrix3x2
impl Sync for F32Matrix3x2
impl Unpin for F32Matrix3x2
impl UnwindSafe for F32Matrix3x2
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