Enum gltf::Semantic [] [src]

pub enum Semantic {
    Positions,
    Normals,
    Tangents,
    Colors(u32),
    TexCoords(u32),
    Joints(u32),
    Weights(u32),
}

Vertex attribute semantic name.

Variants

XYZ vertex positions.

XYZ vertex normals.

XYZW vertex tangents where the w component is a sign value indicating the handedness of the tangent basis.

RGB or RGBA vertex color.

UV texture co-ordinates.

Joint indices.

Joint weights.

Trait Implementations

impl Hash for Semantic
[src]

[src]

impl Clone for Semantic
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for Semantic
[src]

impl ToString for Semantic
[src]

[src]

impl PartialEq<Semantic> for Semantic
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Debug for Semantic
[src]

[src]

Formats the value using the given formatter.