VertexSource

Trait VertexSource 

Source
pub trait VertexSource {
    // Required method
    fn xconvert(&self) -> Vec<Vertex<f64>>;

    // Provided method
    fn rewind(&self) { ... }
}
Expand description

Source of vertex points

Required Methods§

Source

fn xconvert(&self) -> Vec<Vertex<f64>>

Get values from the source

This could be turned into an iterator

Provided Methods§

Source

fn rewind(&self)

Rewind the vertex source (unused)

Implementors§