Trait embedded_graphics::primitives::PointsIter[][src]

pub trait PointsIter {
    type Iter: Iterator;
    fn points(&self) -> Self::Iter;
}
Expand description

Create an iterator over all points in the primitive.

Associated Types

Iterator over all points inside the primitive.

Required methods

Returns an iterator over all points inside the primitive.

Implementors