Trait IntoPoints

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

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

Loop over points/vertices.

Required Associated Types§

Source

type Point: PointConcept<C>

Type of the points.

Source

type PointIter: Iterator<Item = Self::Point>

Iterator over points.

Required Methods§

Source

fn into_points(self) -> Self::PointIter

Iterate over points.

Implementors§