pub struct Matrix(pub Box<[f32; 16]>);
Expand description
Describes transformations that embody mathematical changes to points within a coordinate system or the coordinate system itself.
Tuple Fields§
§0: Box<[f32; 16]>
A list of 16 floating-point values. These values are organized into a 4-by-4 column-order matrix suitable for matrix composition.
Implementations§
Trait Implementations§
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