Trait PointsIter
Other items inembedded_graphics::primitives
pub trait PointsIter { type Iter: Iterator; fn points(&self) -> Self::Iter; }
Create an iterator over all points in the primitive.
type Iter: Iterator
Iterator over all points inside the primitive.
fn points(&self) -> Self::Iter
Returns an iterator over all points inside the primitive.
impl PointsIter for Arc
type Iter = Points
impl PointsIter for Circle
impl PointsIter for Ellipse
impl PointsIter for Line
impl PointsIter for Rectangle
pub fn points(&self) -> <Rectangle as PointsIter>::Iter
impl PointsIter for RoundedRectangle
impl PointsIter for Sector
impl PointsIter for Triangle
impl<'a> PointsIter for Polyline<'a>
type Iter = Points<'a>