pub trait Draw { fn draw(&self, s: &mut PixState) -> PixResult<()>; }
Trait for objects that can be drawn to the screen.
Draw shape to the current PixState canvas.