[−][src]Struct rpi_led_matrix::LedCanvas
The Rust handle for the matrix canvas to draw on.
use rpi_led_matrix::{LedMatrix, LedColor}; let matrix = LedMatrix::new(None, None).unwrap(); let canvas = matrix.canvas(); canvas.fill(&LedColor { red: 128, green: 128, blue: 128 });
Implementations
impl LedCanvas
[src]
pub fn canvas_size(&self) -> (i32, i32)
[src]
Retrieves the width & height of the canvas
pub fn set(&mut self, x: i32, y: i32, color: &LedColor)
[src]
Sets the pixel at the given coordinate to the given color.
pub fn clear(&mut self)
[src]
Clears the canvas.
pub fn fill(&mut self, color: &LedColor)
[src]
Fills the canvas with the given color.
pub fn draw_line(
&mut self,
x0: i32,
y0: i32,
x1: i32,
y1: i32,
color: &LedColor
)
[src]
&mut self,
x0: i32,
y0: i32,
x1: i32,
y1: i32,
color: &LedColor
)
Draws a straight, one pixel wide line using the C++ library.
Consider using embedded-graphics for more drawing features.
pub fn draw_circle(&mut self, x: i32, y: i32, radius: u32, color: &LedColor)
[src]
Draws a one pixel wide circle using the C++ library.
Consider using embedded-graphics for more drawing features.
pub fn draw_text(
&mut self,
font: &LedFont,
text: &str,
x: i32,
y: i32,
color: &LedColor,
kerning_offset: i32,
vertical: bool
) -> i32
[src]
&mut self,
font: &LedFont,
text: &str,
x: i32,
y: i32,
color: &LedColor,
kerning_offset: i32,
vertical: bool
) -> i32
Renders text using the C++ library.
Trait Implementations
impl<C> DrawTarget<C> for LedCanvas where
C: Into<LedColor> + PixelColor,
[src]
C: Into<LedColor> + PixelColor,
type Error = Infallible
Error type to return when a drawing operation fails. Read more
fn draw_pixel(&mut self, item: Pixel<C>) -> Result<(), Self::Error>
[src]
fn size(&self) -> Size
[src]
fn clear(&mut self, color: C) -> Result<(), Self::Error>
[src]
fn draw_iter<T>(&mut self, item: T) -> Result<(), Self::Error> where
T: IntoIterator<Item = Pixel<C>>,
[src]
T: IntoIterator<Item = Pixel<C>>,
fn draw_line(
&mut self,
item: &Styled<Line, PrimitiveStyle<C>>
) -> Result<(), Self::Error>
[src]
&mut self,
item: &Styled<Line, PrimitiveStyle<C>>
) -> Result<(), Self::Error>
fn draw_triangle(
&mut self,
item: &Styled<Triangle, PrimitiveStyle<C>>
) -> Result<(), Self::Error>
[src]
&mut self,
item: &Styled<Triangle, PrimitiveStyle<C>>
) -> Result<(), Self::Error>
fn draw_rectangle(
&mut self,
item: &Styled<Rectangle, PrimitiveStyle<C>>
) -> Result<(), Self::Error>
[src]
&mut self,
item: &Styled<Rectangle, PrimitiveStyle<C>>
) -> Result<(), Self::Error>
fn draw_circle(
&mut self,
item: &Styled<Circle, PrimitiveStyle<C>>
) -> Result<(), Self::Error>
[src]
&mut self,
item: &Styled<Circle, PrimitiveStyle<C>>
) -> Result<(), Self::Error>
fn draw_image<'b, I>(
&mut self,
item: &'a Image<'b, I, C>
) -> Result<(), Self::Error> where
C: PixelColor + From<<C as PixelColor>::Raw>,
I: ImageDimensions,
&'b I: IntoPixelIter<C>,
[src]
&mut self,
item: &'a Image<'b, I, C>
) -> Result<(), Self::Error> where
C: PixelColor + From<<C as PixelColor>::Raw>,
I: ImageDimensions,
&'b I: IntoPixelIter<C>,
Auto Trait Implementations
impl RefUnwindSafe for LedCanvas
impl !Send for LedCanvas
impl !Sync for LedCanvas
impl Unpin for LedCanvas
impl UnwindSafe for LedCanvas
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,