#[repr(C)]pub struct IPLMatrix4x4 {
pub elements: [[IPLfloat32; 4]; 4],
}Expand description
A 4x4 matrix used to represent an affine transform.
Fields§
§elements: [[IPLfloat32; 4]; 4]Matrix elements, in row-major order.
Trait Implementations§
Source§impl Clone for IPLMatrix4x4
impl Clone for IPLMatrix4x4
Source§fn clone(&self) -> IPLMatrix4x4
fn clone(&self) -> IPLMatrix4x4
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 IPLMatrix4x4
impl Debug for IPLMatrix4x4
impl Copy for IPLMatrix4x4
Auto Trait Implementations§
impl Freeze for IPLMatrix4x4
impl RefUnwindSafe for IPLMatrix4x4
impl Send for IPLMatrix4x4
impl Sync for IPLMatrix4x4
impl Unpin for IPLMatrix4x4
impl UnwindSafe for IPLMatrix4x4
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