rustplot 0.1.0

A simple GUI based plotting library for Rust using GTK and Cairo.
1
2
3
4
5
/// Trait implemented by all drawable charts providing the interface for drawing functionality.
pub trait Chart {
    /// Draws the chart specified for the instance that this function is called on.
    fn draw(&self);
}