drawille-rs
drawille-rs copied to clipboard
a port of asciimoo/drawille to Rust
Hi, I added functions to draw ellipses (= circles) and rectagle for my own usage. Are you interested to merge this function with the main version? You can check my...
I'm a little confused as to how `Canvas::new` works. ```rust let mut canvas = Canvas::new(2, 4); for y in 0..4 { for x in 0..2 { canvas.set(x, y); } }...
Fixes ftxqxd/drawille-rs#14, where output string can be 1 row and/or col too large resulting in additional white space when given width is divisible by 2 and/or height is divisible by...