Struct amethyst_renderer::PosNormTex [−][src]
#[repr(C)]pub struct PosNormTex { pub position: [f32; 3], pub normal: [f32; 3], pub tex_coord: [f32; 2], }
Vertex format with position, normal, and UV texture coordinate attributes.
Fields
position: [f32; 3]
Position of the vertex in 3D space.
normal: [f32; 3]
Normal vector of the vertex.
tex_coord: [f32; 2]
UV texture coordinates used by the vertex.
Trait Implementations
impl Clone for PosNormTex[src]
impl Clone for PosNormTexfn clone(&self) -> PosNormTex[src]
fn clone(&self) -> PosNormTexReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Copy for PosNormTex[src]
impl Copy for PosNormTeximpl Debug for PosNormTex[src]
impl Debug for PosNormTexfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for PosNormTex[src]
impl PartialEq for PosNormTexfn eq(&self, other: &PosNormTex) -> bool[src]
fn eq(&self, other: &PosNormTex) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &PosNormTex) -> bool[src]
fn ne(&self, other: &PosNormTex) -> boolThis method tests for !=.
impl Pod for PosNormTex[src]
impl Pod for PosNormTeximpl VertexFormat for PosNormTex[src]
impl VertexFormat for PosNormTexconst ATTRIBUTES: Attributes<'static>
ATTRIBUTES: Attributes<'static> = &[(<Position>::NAME, <Self as With::<Position>>::FORMAT), (<Normal>::NAME, <Self as With::<Normal>>::FORMAT), (<TexCoord>::NAME, <Self as With::<TexCoord>>::FORMAT)]
List of all attributes formats with name and offset.
fn size() -> usize[src]
fn size() -> usizeReturns the size of a single vertex in bytes.
fn attribute<F>() -> AttributeFormat where
F: Attribute,
Self: With<F>, [src]
fn attribute<F>() -> AttributeFormat where
F: Attribute,
Self: With<F>, Returns attribute of vertex by type
impl With<Position> for PosNormTex[src]
impl With<Position> for PosNormTexconst FORMAT: AttributeFormat
FORMAT: AttributeFormat = Element{offset: 0, format: <Position>::FORMAT,}
Individual format of the attribute for this vertex format
impl With<Normal> for PosNormTex[src]
impl With<Normal> for PosNormTexconst FORMAT: AttributeFormat
FORMAT: AttributeFormat = Element{offset: <Position>::SIZE, format: <Normal>::FORMAT,}
Individual format of the attribute for this vertex format
impl With<TexCoord> for PosNormTex[src]
impl With<TexCoord> for PosNormTexconst FORMAT: AttributeFormat
FORMAT: AttributeFormat = Element{offset: <Position>::SIZE + <Normal>::SIZE, format: <TexCoord>::FORMAT,}
Individual format of the attribute for this vertex format
Auto Trait Implementations
impl Send for PosNormTex
impl Send for PosNormTeximpl Sync for PosNormTex
impl Sync for PosNormTex