Struct polystrip::vertex::TexturedShape[][src]

pub struct TexturedShape<'a> {
    pub vertices: &'a [TextureVertex],
    pub indices: &'a [[u16; 3]],
}

A set of vertices and indices describing a geometric shape as a set of triangles.

The color of the shape is determined by interpolating the texture coordinates at each TextureVertex.

A TexturedShape does not store the texture it is to draw. This must be specified in the arguments to Frame::draw_textured

Fields

vertices: &'a [TextureVertex]indices: &'a [[u16; 3]]

A list of sets of three vertices which specify how the vertices should be rendered as triangles.

Trait Implementations

impl<'a> Clone for TexturedShape<'a>[src]

impl<'a> Copy for TexturedShape<'a>[src]

impl<'a> Debug for TexturedShape<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for TexturedShape<'a>

impl<'a> Send for TexturedShape<'a>

impl<'a> Sync for TexturedShape<'a>

impl<'a> Unpin for TexturedShape<'a>

impl<'a> UnwindSafe for TexturedShape<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.