Struct cogl_sys::CoglMatrix[][src]

#[repr(C)]pub struct CoglMatrix {
    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_floatyx: c_floatzx: c_floatwx: c_floatxy: c_floatyy: c_floatzy: c_floatwy: c_floatxz: c_floatyz: c_floatzz: c_floatwz: c_floatxw: c_floatyw: c_floatzw: c_floatww: c_floatprivate_member_inv: [c_float; 16]private_member_type: c_ulongprivate_member_flags: c_ulongprivate_member__padding3: c_ulong

Trait Implementations

impl Clone for CoglMatrix[src]

impl Copy for CoglMatrix[src]

impl Debug for CoglMatrix[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.