[][src]Struct raylib_sys::Mesh

#[repr(C)]pub struct Mesh {
    pub vertexCount: c_int,
    pub triangleCount: c_int,
    pub vertices: *mut f32,
    pub texcoords: *mut f32,
    pub texcoords2: *mut f32,
    pub normals: *mut f32,
    pub tangents: *mut f32,
    pub colors: *mut c_uchar,
    pub indices: *mut c_ushort,
    pub animVertices: *mut f32,
    pub animNormals: *mut f32,
    pub boneIds: *mut c_int,
    pub boneWeights: *mut f32,
    pub vaoId: c_uint,
    pub vboId: *mut c_uint,
}

Fields

vertexCount: c_inttriangleCount: c_intvertices: *mut f32texcoords: *mut f32texcoords2: *mut f32normals: *mut f32tangents: *mut f32colors: *mut c_ucharindices: *mut c_ushortanimVertices: *mut f32animNormals: *mut f32boneIds: *mut c_intboneWeights: *mut f32vaoId: c_uintvboId: *mut c_uint

Trait Implementations

impl Clone for Mesh[src]

impl Copy for Mesh[src]

impl Debug for Mesh[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.