Struct amethyst_renderer::PosNormTangTex [] [src]

#[repr(C)]
pub struct PosNormTangTex { pub position: [f32; 3], pub normal: [f32; 3], pub tangent: [f32; 3], pub tex_coord: [f32; 2], }

Vertex format with position, normal, and UV texture coordinate attributes.

Fields

Position of the vertex in 3D space.

Normal vector of the vertex.

Tangent vector of the vertex.

UV texture coordinates used by the vertex.

Trait Implementations

impl Clone for PosNormTangTex
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for PosNormTangTex
[src]

impl Debug for PosNormTangTex
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for PosNormTangTex
[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 Pod for PosNormTangTex
[src]

impl VertexFormat for PosNormTangTex
[src]

ATTRIBUTES: Attributes<'static> = &[(<Position>::NAME, <Self as With::<Position>>::FORMAT),
  (<Normal>::NAME, <Self as With::<Normal>>::FORMAT),
  (<Tangent>::NAME, <Self as With::<Tangent>>::FORMAT),
  (<TexCoord>::NAME, <Self as With::<TexCoord>>::FORMAT)]

List of all attributes formats with name and offset.

[src]

Returns the size of a single vertex in bytes.

[src]

Returns attribute of vertex by type

impl With<Position> for PosNormTangTex
[src]

FORMAT: AttributeFormat = Element{offset: 0, format: <Position>::FORMAT,}

Individual format of the attribute for this vertex format

impl With<Normal> for PosNormTangTex
[src]

FORMAT: AttributeFormat = Element{offset: <Position>::SIZE, format: <Normal>::FORMAT,}

Individual format of the attribute for this vertex format

impl With<Tangent> for PosNormTangTex
[src]

FORMAT: AttributeFormat = Element{offset: <Position>::SIZE + <Normal>::SIZE, format: <Tangent>::FORMAT,}

Individual format of the attribute for this vertex format

impl With<TexCoord> for PosNormTangTex
[src]

FORMAT: AttributeFormat = Element{offset: <Position>::SIZE + <Normal>::SIZE + <Tangent>::SIZE,
        format: <TexCoord>::FORMAT,}

Individual format of the attribute for this vertex format