logo
pub trait StrokeVertexConstructor<OutputVertex> {
    fn new_vertex(&mut self, vertex: StrokeVertex<'_, '_>) -> OutputVertex;
}
Expand description

A trait specifying how to create vertex values.

Required Methods

Implementors