[][src]Struct embedded_graphics::primitives::circle::Circle

pub struct Circle<C: PixelColor> {
    pub center: Coord,
    pub radius: u32,
    pub style: Style<C>,
}

Circle primitive

Fields

center: Coord

Center point of circle

radius: u32

Radius of the circle

style: Style<C>

Style of the circle

Methods

impl<C> Circle<C> where
    C: PixelColor
[src]

pub fn new(center: Coord, radius: u32) -> Self[src]

Create a new circle with center point, radius and border color

Trait Implementations

impl<C> Drawable for Circle<C> where
    C: PixelColor
[src]

impl<C> Dimensions for Circle<C> where
    C: PixelColor
[src]

impl<C> Primitive for Circle<C> where
    C: PixelColor
[src]

impl<C> WithStyle<C> for Circle<C> where
    C: PixelColor
[src]

impl<C> Transform for Circle<C> where
    C: PixelColor
[src]

fn translate(&self, by: Coord) -> Self[src]

Translate the circle center from its current position to a new position by (x, y) pixels, returning a new Circle. For a mutating transform, see translate_mut.

let circle = Circle::new(Coord::new(5, 10), 10)
let moved = circle.translate(Coord::new(10, 10));

assert_eq!(moved.center, Coord::new(15, 20));

fn translate_mut(&mut self, by: Coord) -> &mut Self[src]

Translate the circle center from its current position to a new position by (x, y) pixels.

let mut circle = Circle::new(Coord::new(5, 10), 10)
circle.translate_mut(Coord::new(10, 10));

assert_eq!(circle.center, Coord::new(15, 20));

impl<C: Debug + PixelColor> Debug for Circle<C>[src]

impl<C: Copy + PixelColor> Copy for Circle<C>[src]

impl<'a, C> IntoIterator for &'a Circle<C> where
    C: PixelColor
[src]

type Item = Pixel<C>

The type of the elements being iterated over.

type IntoIter = CircleIterator<C>

Which kind of iterator are we turning this into?

impl<C: Clone + PixelColor> Clone for Circle<C>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<C> Send for Circle<C> where
    C: Send

impl<C> Sync for Circle<C> where
    C: Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]