[][src]Struct brawllib_rs::mdl0::objects::Object

pub struct Object {
    pub single_bind_node_id: Option<u32>,
    pub modifier: Modifier,
    pub name: Option<String>,
    pub index: u32,
    pub num_vertices: u32,
    pub num_faces: u32,
    pub vertex_id: i16,
    pub normal_id: i16,
    pub color_ids: [i16; 2],
    pub uv_ids: [i16; 8],
    // some fields omitted
}

Fields

single_bind_node_id: Option<u32>modifier: Modifiername: Option<String>index: u32num_vertices: u32num_faces: u32vertex_id: i16normal_id: i16color_ids: [i16; 2]uv_ids: [i16; 8]

Methods

impl Object[src]

pub fn has_vertex_matrix(&self) -> bool[src]

pub fn has_tex_matrix(&self, index: usize) -> bool[src]

pub fn vertex_format(&self) -> XFDataFormat[src]

pub fn normal_format(&self) -> XFDataFormat[src]

pub fn color_format(&self, index: usize) -> Option<XFDataFormat>[src]

pub fn tex_format(&self, index: usize) -> Option<XFDataFormat>[src]

pub fn num_colors(&self) -> usize[src]

pub fn normal_type(&self) -> XFNormalType[src]

pub fn num_textures(&self) -> usize[src]

Trait Implementations

impl Clone for Object[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Object[src]

Auto Trait Implementations

impl Send for Object

impl Sync for Object

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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