Trait agg::VertexSource

source ·
pub trait VertexSource {
    fn xconvert(&self) -> Vec<Vertex<f64>>;

    fn rewind(&self) { ... }
}
Expand description

Source of vertex points

Required Methods

Get values from the source

This could be turned into an iterator

Provided Methods

Rewind the vertex source (unused)

Implementors