rsille 2.3.1

A full feature braille code art lib
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! This module can be used to paint math function or math plot easily
//!
//! Like if you want to see the `y=sin(x)` and `y=cos(x)` on `(0, 5)`,
//! it's very very easy:
//! ```
//! use rsille::figure;
//! figure!((|x| x.sin(), (0, 5)), (|x| x.cos(), (0, 5)));
//! ```

mod figure;
mod plot;

pub use figure::Figure;
pub use figure::Plotable;
pub use plot::Plot;