logo
pub struct Ellipse {
    pub top_left: Point,
    pub size: Size,
}
Expand description

Ellipse primitive

Examples

Create some ellipses with different styles

use embedded_graphics::{
    pixelcolor::Rgb565,
    prelude::*,
    primitives::{Ellipse, 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

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

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

Return the center point of the ellipse

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Returns true if the given point is inside the shape.

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Returns the bounding box.

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

Offsets the outline of the shape. Read more

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Iterator over all points inside the primitive.

Returns an iterator over all points inside the primitive.

Converts this primitive into a Styled.

Returns the bounding box using the given style.

Color type.

Output type.

Draws the primitive using the given style.

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));

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

Blanket Implementations

Gets the TypeId of self. Read more

Casts the value.

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Casts the value.

Casts the value.

Casts the value.

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Casts the value.

OverflowingCasts the value.

Casts the value.

Casts the value.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Casts the value.

UnwrappedCasts the value.

Casts the value.

WrappingCasts the value.