pub trait Polygon<C: CoordinateConcept>: PolygonWithHoles<C> + IntoPoints<C> {
    fn set(&mut self, iter: ());
}
Expand description

Concept of a polygon which consists of a single closed loop of vertices.

Required Methods

Set points from an iterator.

Implementors