pub trait IntoPoints<C: CoordinateConcept> {
    type Point: PointConcept<C>;
    type PointIter: Iterator<Item = Self::Point>;

    fn into_points(self) -> Self::PointIter;
}
Expand description

Loop over points/vertices.

Required Associated Types

Type of the points.

Iterator over points.

Required Methods

Iterate over points.

Implementors