aflak_plot 0.0.3

Plotting library using imgui made for aflak
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
extern crate glium;
#[macro_use]
extern crate imgui;
extern crate imgui_glium_renderer;
extern crate ndarray;

pub mod imshow;
pub mod plot;

mod err;
mod interactions;
mod lims;
mod ticks;
mod util;

pub use err::Error;
pub use interactions::{InteractionId, InteractionIterMut, Value, ValueIter};