Shape

Trait Shape 

Source
pub trait Shape {
    // Required method
    fn draw(&self, grid: &mut BrailleGrid);
}
Expand description

A shape that can be drawn on a braille canvas

Required Methods§

Source

fn draw(&self, grid: &mut BrailleGrid)

Draw the shape onto the braille grid

Implementors§