Enum gltf::mesh::Colors [] [src]

pub enum Colors {
    RgbU8(Iter<[u8; 3]>),
    RgbaU8(Iter<[u8; 4]>),
    RgbU16(Iter<[u16; 3]>),
    RgbaU16(Iter<[u16; 4]>),
    RgbF32(Iter<[f32; 3]>),
    RgbaF32(Iter<[f32; 4]>),
}

Vertex colors.

Variants

RGB vertex color of type [u8; 3]>.

RGBA vertex color of type [u8; 4]>.

RGB vertex color of type [u16; 3]>.

RGBA vertex color of type [u16; 4]>.

RGB vertex color of type [f32; 3].

RGBA vertex color of type [f32; 4].

Trait Implementations

impl Debug for Colors
[src]

Formats the value using the given formatter.