[][src]Struct screen_13::gpu::vertex::SkinVertex

#[repr(C)]pub struct SkinVertex {
    pub position: Vec3,
    pub joints: Vec4,
    pub weights: Vec4,
    pub tex_coord: Vec2,
}

Same as Normal, except that additional vertex attributes for joins and weights are added.

Fields

position: Vec3

POSITION

joints: Vec4

JOINTS (four channel mix)

weights: Vec4

WEIGHTS (four channel mix)

tex_coord: Vec2

TEXCOORD0

Trait Implementations

impl Clone for SkinVertex[src]

impl Copy for SkinVertex[src]

impl Debug for SkinVertex[src]

impl Default for SkinVertex[src]

impl Eq for SkinVertex[src]

impl From<&'_ SkinVertex> for Vertex[src]

impl From<[f32; 13]> for SkinVertex[src]

impl From<([f32; 3], [f32; 4], [f32; 4], [f32; 2])> for SkinVertex[src]

impl From<(Vec3, Vec4, Vec4, Vec2)> for SkinVertex[src]

impl From<SkinVertex> for Vertex[src]

impl Ord for SkinVertex[src]

impl PartialEq<SkinVertex> for SkinVertex[src]

impl PartialOrd<SkinVertex> for SkinVertex[src]

impl StructuralPartialEq for SkinVertex[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> Pointable for T

type Init = T

The type for initializers.

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

type Output = T

Should always be Self

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.