Struct amethyst_renderer::vertex::PosColor []

#[repr(C)]
pub struct PosColor { pub a_position: [f32; 3], pub a_color: [f32; 4], }

Vertex format with position and RGBA8 color attributes.

Fields

Position of the vertex in 3D space.

RGBA color value of the vertex.

Trait Implementations

impl Clone for PosColor

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for PosColor

impl Debug for PosColor

Formats the value using the given formatter.

impl PartialEq for PosColor

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

This method tests for !=.

impl Pod for PosColor

impl Structure<Format> for PosColor

Get the layout of an element by name.

impl VertexFormat for PosColor

Container for attributes of this format

Container for name+attribute pairs of this format

Returns a list of all attributes specified in the vertex.

Returns a list of all name+attribute pairs specified in the vertex. The caller provides attribute type -> Name mapping Read more

Returns the size of a single vertex in bytes.

Returns attribute of vertex by type

impl WithField<Position> for PosColor

Query individual attribute of the field for this format

impl WithField<Color> for PosColor

Query individual attribute of the field for this format