pub struct Transform4x4 {
pub matrix: [[f64; 4]; 4],
}Expand description
4x4 transformation matrix (row-major)
Fields§
§matrix: [[f64; 4]; 4]Implementations§
Source§impl Transform4x4
impl Transform4x4
Trait Implementations§
Source§impl Clone for Transform4x4
impl Clone for Transform4x4
Source§fn clone(&self) -> Transform4x4
fn clone(&self) -> Transform4x4
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 Transform4x4
impl Debug for Transform4x4
Source§impl Default for Transform4x4
impl Default for Transform4x4
impl Copy for Transform4x4
Auto Trait Implementations§
impl Freeze for Transform4x4
impl RefUnwindSafe for Transform4x4
impl Send for Transform4x4
impl Sync for Transform4x4
impl Unpin for Transform4x4
impl UnsafeUnpin for Transform4x4
impl UnwindSafe for Transform4x4
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