Trait spherical_voronoi::Visitor [] [src]

pub trait Visitor {
    fn vertex(&mut self, point: Point, cells: [usize; 3]);
    fn edge(&mut self, vertices: [usize; 2]);
    fn cell(&mut self);
}

Required Methods

Implementors