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

pub trait PointsIter {
    type Iter: Iterator<Item = Point>;
    pub 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

pub 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...