pub trait SimpleConvexGeometry: Debug {
    type Vertices: Iterator<Item = Vertex2D>;

    fn vertices(&self) -> Self::Vertices;
    fn vertex_count(&self) -> usize;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors