[][src]Struct embedded_graphics::primitives::ellipse::Ellipse

pub struct Ellipse {
    pub top_left: Point,
    pub size: Size,
}

Ellipse primitive

Examples

Create some ellipses with different styles

use embedded_graphics::{
    pixelcolor::Rgb565,
    prelude::*,
    primitives::Ellipse,
    style::{PrimitiveStyle, PrimitiveStyleBuilder},
};

// Ellipse with 1 pixel wide white stroke with top-left point at (10, 20) with a size of (30, 40)
Ellipse::new(Point::new(10, 20), Size::new(30, 40))
    .into_styled(PrimitiveStyle::with_stroke(Rgb565::WHITE, 1))
    .draw(&mut display)?;

// Ellipse with styled stroke and fill with top-left point at (20, 30) with a size of (40, 30)
let style = PrimitiveStyleBuilder::new()
    .stroke_color(Rgb565::RED)
    .stroke_width(3)
    .fill_color(Rgb565::GREEN)
    .build();

Ellipse::new(Point::new(20, 30), Size::new(40, 30))
    .into_styled(style)
    .draw(&mut display)?;

// Ellipse with blue fill and no stroke with a translation applied
Ellipse::new(Point::new(10, 20), Size::new(20, 40))
    .translate(Point::new(10, -15))
    .into_styled(PrimitiveStyle::with_fill(Rgb565::BLUE))
    .draw(&mut display)?;

Fields

top_left: Point

Top-left point of ellipse's bounding box

size: Size

Size of the ellipse

Implementations

impl Ellipse[src]

pub const fn new(top_left: Point, size: Size) -> Self[src]

Create a new ellipse delimited with a top-left point with a specific size

pub fn with_center(center: Point, size: Size) -> Self[src]

Create a new ellipse centered around a given point with a specific size

pub fn center(&self) -> Point[src]

Return the center point of the ellipse

Trait Implementations

impl Clone for Ellipse[src]

impl ContainsPoint for Ellipse[src]

impl Copy for Ellipse[src]

impl Debug for Ellipse[src]

impl Default for Ellipse[src]

impl Dimensions for Ellipse[src]

impl Eq for Ellipse[src]

impl Hash for Ellipse[src]

impl OffsetOutline for Ellipse[src]

impl Ord for Ellipse[src]

impl PartialEq<Ellipse> for Ellipse[src]

impl PartialOrd<Ellipse> for Ellipse[src]

impl Primitive for Ellipse[src]

type PointsIter = Points

Iterator over all points inside the primitive.

impl StructuralEq for Ellipse[src]

impl StructuralPartialEq for Ellipse[src]

impl Transform for Ellipse[src]

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

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

let ellipse = Ellipse::new(Point::new(5, 10), Size::new(10, 15));
let moved = ellipse.translate(Point::new(10, 10));

assert_eq!(moved.top_left, Point::new(15, 20));

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

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

let mut ellipse = Ellipse::new(Point::new(5, 10), Size::new(10, 15));
ellipse.translate_mut(Point::new(10, 10));

assert_eq!(ellipse.top_left, Point::new(15, 20));

Auto Trait Implementations

impl Send for Ellipse

impl Sync for Ellipse

impl Unpin for Ellipse

Blanket Implementations

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

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

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

impl<T> Dimensions for T where
    T: OriginDimensions
[src]

impl<T> From<T> for T[src]

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

impl<Src, Dst> LosslessTryInto<Dst> for Src where
    Dst: LosslessTryFrom<Src>, 
[src]

impl<Src, Dst> LossyInto<Dst> for Src where
    Dst: LossyFrom<Src>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: PartialEq<T> + Copy + Any + Debug
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,