[][src]Trait lyon_tessellation::FillVertexConstructor

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

A trait specifying how to create vertex values.

Required methods

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

Loading content...

Implementors

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

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

Loading content...