Struct polystrip::vertex::StrokedShape[][src]

pub struct StrokedShape<'a> {
    pub vertices: &'a [ColorVertex],
    pub indices: &'a [[u16; 2]],
}

A set of vertices and indices describing an outlined geometric shape as a set of lines.

The colors of the lines are determined by interpolating the colors at each ColorVertex.

Fields

vertices: &'a [ColorVertex]indices: &'a [[u16; 2]]

A list of pairs of vertices which specify which vertices should have lines drawn between them

Trait Implementations

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for StrokedShape<'a>

impl<'a> Send for StrokedShape<'a>

impl<'a> Sync for StrokedShape<'a>

impl<'a> Unpin for StrokedShape<'a>

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