Trait PointsIter
embedded_graphics_core::primitives
pub trait PointsIter { type Iter: Iterator<Item = Point>; pub fn points(&self) -> Self::Iter; }
Create an iterator over all points in the primitive.
type Iter: Iterator<Item = Point>
Iterator over all points inside the primitive.
pub fn points(&self) -> Self::Iter
Returns an iterator over all points inside the primitive.
impl PointsIter for Rectangle
type Iter = Points