[][src]Struct lyon_tessellation::StrokeVertex

pub struct StrokeVertex {
    pub position: Point,
    pub normal: Vector,
    pub advancement: f32,
    pub side: Side,
}

Vertex produced by the stroke tessellators.

Fields

position: Point

Position of the vertex (on the path, the consumer should move the point along the provided normal in order to give the stroke a width).

normal: Vector

Normal at this vertex such that extruding the vertices along the normal would produce a stroke of width 2.0 (1.0 on each side). This vector is not normalized.

advancement: f32

How far along the path this vertex is.

side: Side

Whether the vertex is on the left or right side of the path.

Trait Implementations

impl Copy for StrokeVertex[src]

impl Clone for StrokeVertex[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<StrokeVertex> for StrokeVertex[src]

impl Debug for StrokeVertex[src]

Auto Trait Implementations

Blanket Implementations

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> From<T> for T[src]

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.

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

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

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