Struct embedded_graphics::primitives::polyline::Polyline [−][src]
Expand description
Polyline primitive
Creates an unfilled chained line shape.
Examples
Draw a “heartbeat” shaped polyline
This example draws a stylized cardiogram in a 5px green stroke.
use embedded_graphics::{ pixelcolor::Rgb565, prelude::*, primitives::{Polyline, PrimitiveStyle}, }; // A "heartbeat" shaped polyline let points: [Point; 10] = [ Point::new(10, 64), Point::new(50, 64), Point::new(60, 44), Point::new(70, 64), Point::new(80, 64), Point::new(90, 74), Point::new(100, 10), Point::new(110, 84), Point::new(120, 64), Point::new(300, 64), ]; let line_style = PrimitiveStyle::with_stroke(Rgb565::GREEN, 5); Polyline::new(&points) .into_styled(line_style) .draw(&mut display)?;
Fields
translate: PointAn offset to apply to the polyline as a whole
vertices: &'a [Point]All vertices in the line
Implementations
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 polyline from its current position to a new position by (x, y) pixels, returning
a new Polyline. For a mutating transform, see translate_mut.
let points = [ Point::new(5, 10), Point::new(7, 7), Point::new(5, 8), Point::new(10, 10), ]; let polyline = Polyline::new(&points); let moved = polyline.translate(Point::new(10, 12)); assert_eq!(polyline.bounding_box().top_left, Point::new(5, 7)); assert_eq!(moved.bounding_box().top_left, Point::new(15, 19));
Translate the polyline from its current position to a new position by (x, y) pixels.
let points = [ Point::new(5, 10), Point::new(7, 7), Point::new(5, 8), Point::new(10, 10), ]; let mut polyline = Polyline::new(&points); polyline.translate_mut(Point::new(10, 12)); assert_eq!(polyline.bounding_box().top_left, Point::new(15, 19));
Auto Trait Implementations
impl<'a> RefUnwindSafe for Polyline<'a>impl<'a> UnwindSafe for Polyline<'a>Blanket 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.