[][src]Struct rpi_led_matrix::LedCanvas

pub struct LedCanvas { /* fields omitted */ }

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]

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]

Renders text using the C++ library.

Trait Implementations

impl<C> DrawTarget<C> for LedCanvas where
    C: Into<LedColor> + PixelColor
[src]

type Error = Infallible

Error type to return when a drawing operation fails. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.