Struct embedded_graphics::primitives::line::Line [−][src]
Expand description
Line primitive
Examples
Create some lines with different styles
use embedded_graphics::{ pixelcolor::Rgb565, prelude::*, primitives::{Line, PrimitiveStyle}, }; // Red 1 pixel wide line from (50, 20) to (60, 35) Line::new(Point::new(50, 20), Point::new(60, 35)) .into_styled(PrimitiveStyle::with_stroke(Rgb565::RED, 1)) .draw(&mut display)?; // Green 10 pixel wide line with translation applied Line::new(Point::new(50, 20), Point::new(60, 35)) .translate(Point::new(-30, 10)) .into_styled(PrimitiveStyle::with_stroke(Rgb565::GREEN, 10)) .draw(&mut display)?;
Fields
start: Point
Start point
end: Point
End point
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 = C
Color 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 line from its current position to a new position by (x, y) pixels, returning
a new Line
. For a mutating transform, see translate_mut
.
let line = Line::new(Point::new(5, 10), Point::new(15, 20)); let moved = line.translate(Point::new(10, 10)); assert_eq!(moved.start, Point::new(15, 20)); assert_eq!(moved.end, Point::new(25, 30));
Translate the line from its current position to a new position by (x, y) pixels.
let mut line = Line::new(Point::new(5, 10), Point::new(15, 20)); line.translate_mut(Point::new(10, 10)); assert_eq!(line.start, Point::new(15, 20)); assert_eq!(line.end, Point::new(25, 30));
Auto Trait Implementations
impl RefUnwindSafe for Line
impl UnwindSafe for Line
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 = T
Should 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) -> bool
Checks 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) -> SS
Use 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) -> SP
The inclusion map: converts self
to the equivalent element of its superset.
Casts the value.
pub fn vzip(self) -> V
Casts the value.