Trait embedded_graphics_core::primitives::PointsIter[][src]

pub trait PointsIter {
    type Iter: Iterator<Item = Point>;
    fn points(&self) -> Self::Iter;
}

Create an iterator over all points in the primitive.

Associated Types

type Iter: Iterator<Item = Point>[src]

Iterator over all points inside the primitive.

Loading content...

Required methods

fn points(&self) -> Self::Iter[src]

Returns an iterator over all points inside the primitive.

Loading content...

Implementors

impl PointsIter for Rectangle[src]

type Iter = Points

Loading content...