Struct embedded_graphics::primitives::sector::Sector [−][src]
pub struct Sector {
pub top_left: Point,
pub diameter: u32,
pub angle_start: Angle,
pub angle_sweep: Angle,
}Expand description
Sector primitive
Examples
Create some sectors with different styles
use embedded_graphics::{ pixelcolor::Rgb565, prelude::*, primitives::{Sector, PrimitiveStyle, PrimitiveStyleBuilder}, }; // Sector with 1 pixel wide white stroke with top-left point at (10, 20) with a diameter of 30 Sector::new(Point::new(10, 20), 30, 0.0.deg(), 90.0.deg()) .into_styled(PrimitiveStyle::with_stroke(Rgb565::WHITE, 1)) .draw(&mut display)?; // Sector with styled stroke and fill with top-left point at (10, 20) with a diameter of 30 let style = PrimitiveStyleBuilder::new() .stroke_color(Rgb565::RED) .stroke_width(3) .fill_color(Rgb565::GREEN) .build(); Sector::new(Point::new(10, 20), 30, 180.0.deg(), -90.0.deg()) .into_styled(style) .draw(&mut display)?; // Sector with blue fill and no stroke with a translation applied Sector::new(Point::new(10, 20), 30, 0.0.deg(), 90.0.deg()) .translate(Point::new(15, 5)) .into_styled(PrimitiveStyle::with_fill(Rgb565::BLUE)) .draw(&mut display)?;
Fields
top_left: PointTop-left point of the bounding-box of the circle supporting the sector
diameter: u32Diameter of the circle supporting the sector
angle_start: AngleAngle at which the sector starts
angle_sweep: AngleAngle defining the sector sweep starting at angle_start
Implementations
Create a new sector delimited with a top-left point with a specific diameter and start and sweep angles
Create a new sector centered around a given point with a specific diameter and start and sweep angles
Creates an arc based on a circle.
The resulting sector will match the top_left and diameter of the base circle.
Returns a circle with the same top_left and diameter as this sector.
Trait Implementations
Returns the bounding box.
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
Converts this primitive into a Styled.
Returns the bounding box using the given style.
type Color = C
type Color = CColor type.
fn draw_styled<D>(
&self,
style: &PrimitiveStyle<C>,
target: &mut D
) -> Result<Self::Output, D::Error> where
D: DrawTarget<Color = C>, [src]
fn draw_styled<D>(
&self,
style: &PrimitiveStyle<C>,
target: &mut D
) -> Result<Self::Output, D::Error> where
D: DrawTarget<Color = C>, [src]Draws the primitive using the given style.
Translate the sector from its current position to a new position by (x, y) pixels,
returning a new Sector. For a mutating transform, see translate_mut.
let sector = Sector::new(Point::new(5, 10), 10, 0.0.deg(), 90.0.deg()); let moved = sector.translate(Point::new(10, 10)); assert_eq!(moved.top_left, Point::new(15, 20));
Translate the sector from its current position to a new position by (x, y) pixels.
let mut sector = Sector::new(Point::new(5, 10), 10, 0.0.deg(), 90.0.deg()); sector.translate_mut(Point::new(10, 10)); assert_eq!(sector.top_left, Point::new(15, 20));
Auto Trait Implementations
impl RefUnwindSafe for Sectorimpl UnwindSafe for SectorBlanket Implementations
Mutably borrows from an owned value. Read more
Casts the value.
Performs the conversion.
Performs the conversion.
Casts the value.
type Output = T
type Output = TShould always be Self
Casts the value.
The inverse inclusion map: attempts to construct self from the equivalent element of its
superset. Read more
pub fn is_in_subset(&self) -> bool
pub fn is_in_subset(&self) -> boolChecks if self is actually part of its subset T (and can be converted to it).
pub fn to_subset_unchecked(&self) -> SS
pub fn to_subset_unchecked(&self) -> SSUse with care! Same as self.to_subset but without any property checks. Always succeeds.
pub fn from_subset(element: &SS) -> SP
pub fn from_subset(element: &SS) -> SPThe inclusion map: converts self to the equivalent element of its superset.
Casts the value.
pub fn vzip(self) -> VCasts the value.