Struct polystrip::vertex::ColoredShape[][src]

pub struct ColoredShape<'a> {
    pub vertices: &'a [ColorVertex],
    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 colors at each ColorVertex.

Fields

vertices: &'a [ColorVertex]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 ColoredShape<'a>[src]

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for ColoredShape<'a>

impl<'a> Send for ColoredShape<'a>

impl<'a> Sync for ColoredShape<'a>

impl<'a> Unpin for ColoredShape<'a>

impl<'a> UnwindSafe for ColoredShape<'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.