[][src]Struct PMXUtil::pmx_types::pmx_types::PMXVertex

pub struct PMXVertex {
    pub position: Vec3,
    pub norm: Vec3,
    pub uv: Vec2,
    pub add_uv: [Vec4; 4],
    pub weight_type: PMXVertexWeight,
    pub bone_indices: [i32; 4],
    pub bone_weights: [f32; 4],
    pub sdef_c: Vec3,
    pub sdef_r0: Vec3,
    pub sdef_r1: Vec3,
    pub edge_mag: f32,
}

Fields

position: Vec3norm: Vec3uv: Vec2add_uv: [Vec4; 4]weight_type: PMXVertexWeightbone_indices: [i32; 4]bone_weights: [f32; 4]sdef_c: Vec3sdef_r0: Vec3sdef_r1: Vec3edge_mag: f32

Trait Implementations

impl Debug for PMXVertex[src]

impl Display for PMXVertex[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> ToString for T where
    T: Display + ?Sized
[src]

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.