Struct lyon_tessellation::StrokeVertex[][src]

pub struct StrokeVertex<'a, 'b>(_);

Extra vertex information from the StrokeTessellator accessible when building vertices.

Implementations

impl<'a, 'b> StrokeVertex<'a, 'b>[src]

pub fn position(&self) -> Point[src]

The vertex position.

pub fn normal(&self) -> Vector[src]

Normal at this vertex.

The length of the provided normal is such that displacing the vertex along it inflates the stroke by 2.0 (1.0 on each side).

pub fn position_on_path(&self) -> Point[src]

Position of this vertex on the path, unaffected by the line width.

pub fn advancement(&self) -> f32[src]

How far along the path this vertex is.

pub fn side(&self) -> Side[src]

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

pub fn source(&self) -> VertexSource[src]

Returns the source of this vertex.

pub fn interpolated_attributes(&mut self) -> &[f32][src]

Returns the source of this vertex.

Auto Trait Implementations

impl<'a, 'b> !RefUnwindSafe for StrokeVertex<'a, 'b>[src]

impl<'a, 'b> !Send for StrokeVertex<'a, 'b>[src]

impl<'a, 'b> !Sync for StrokeVertex<'a, 'b>[src]

impl<'a, 'b> Unpin for StrokeVertex<'a, 'b> where
    'a: 'b, 
[src]

impl<'a, 'b> !UnwindSafe for StrokeVertex<'a, 'b>[src]

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, 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.