Trait PointsIter
Other items inembedded_graphics_core::primitives
pub trait PointsIter { type Iter: Iterator<Item = Point>; 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.
fn points(&self) -> Self::Iter
Returns an iterator over all points inside the primitive.
impl PointsIter for Rectangle
type Iter = Points