[][src]Trait lyon_tessellation::StrokeVertexConstructor

pub trait StrokeVertexConstructor<OutputVertex> {
    fn new_vertex(
        &mut self,
        point: Point,
        attributes: StrokeAttributes
    ) -> OutputVertex; }

A trait specifying how to create vertex values.

Required methods

fn new_vertex(
    &mut self,
    point: Point,
    attributes: StrokeAttributes
) -> OutputVertex

Loading content...

Implementors

impl StrokeVertexConstructor<Point2D<f32, UnknownUnit>> for Positions[src]

impl<F, OutputVertex> StrokeVertexConstructor<OutputVertex> for F where
    F: Fn(Point, StrokeAttributes) -> OutputVertex, 
[src]

Loading content...