#[repr(C)]pub struct CoglMatrix {Show 20 fields
pub xx: c_float,
pub yx: c_float,
pub zx: c_float,
pub wx: c_float,
pub xy: c_float,
pub yy: c_float,
pub zy: c_float,
pub wy: c_float,
pub xz: c_float,
pub yz: c_float,
pub zz: c_float,
pub wz: c_float,
pub xw: c_float,
pub yw: c_float,
pub zw: c_float,
pub ww: c_float,
pub private_member_inv: [c_float; 16],
pub private_member_type: c_ulong,
pub private_member_flags: c_ulong,
pub private_member__padding3: c_ulong,
}
Fields§
§xx: c_float
§yx: c_float
§zx: c_float
§wx: c_float
§xy: c_float
§yy: c_float
§zy: c_float
§wy: c_float
§xz: c_float
§yz: c_float
§zz: c_float
§wz: c_float
§xw: c_float
§yw: c_float
§zw: c_float
§ww: c_float
§private_member_inv: [c_float; 16]
§private_member_type: c_ulong
§private_member_flags: c_ulong
§private_member__padding3: c_ulong
Trait Implementations§
Source§impl Clone for CoglMatrix
impl Clone for CoglMatrix
Source§fn clone(&self) -> CoglMatrix
fn clone(&self) -> CoglMatrix
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 CoglMatrix
impl Debug for CoglMatrix
impl Copy for CoglMatrix
Auto Trait Implementations§
impl Freeze for CoglMatrix
impl RefUnwindSafe for CoglMatrix
impl Send for CoglMatrix
impl Sync for CoglMatrix
impl Unpin for CoglMatrix
impl UnwindSafe for CoglMatrix
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