pub struct Mat44<T>(pub [[T; 4]; 4]);Expand description
Matrix N×M.
Tuple Fields§
§0: [[T; 4]; 4]Implementations§
Trait Implementations§
Source§impl<T> Ord for Mat44<T>where
T: Ord,
impl<T> Ord for Mat44<T>where
T: Ord,
Source§impl<T> PartialOrd for Mat44<T>where
T: PartialOrd,
impl<T> PartialOrd for Mat44<T>where
T: PartialOrd,
Source§impl<'a> Uniformable<'a, Mat44<f32>> for GL33
impl<'a> Uniformable<'a, Mat44<f32>> for GL33
type Target = Mat44<f32>
Source§unsafe fn ty() -> UniformType
unsafe fn ty() -> UniformType
Reify the type of the uniform as a
UniformType.impl<T> Copy for Mat44<T>where
T: Copy,
impl<T> Eq for Mat44<T>where
T: Eq,
impl<T> StructuralPartialEq for Mat44<T>
Auto Trait Implementations§
impl<T> Freeze for Mat44<T>where
T: Freeze,
impl<T> RefUnwindSafe for Mat44<T>where
T: RefUnwindSafe,
impl<T> Send for Mat44<T>where
T: Send,
impl<T> Sync for Mat44<T>where
T: Sync,
impl<T> Unpin for Mat44<T>where
T: Unpin,
impl<T> UnwindSafe for Mat44<T>where
T: UnwindSafe,
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