[][src]Trait lyon_tessellation::BasicVertexConstructor

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

A trait specifying how to create vertex values.

Required methods

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

Loading content...

Implementors

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

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

Loading content...