summaryrefslogtreecommitdiff
path: root/src/plot/mod.rs
blob: 8773020013160a7a2b9c821c99b9f6634c08e924 (plain)
1
2
3
4
5
6
7
8
9
pub mod gnuplot;
pub use gnuplot::Gnuplot;

pub trait Graph {
    fn plot3d(data: Vec<[f64; 6]>, chunk_size: u32);
    fn animate3d(data: Vec<[f64; 6]>, chunk_size: u32, start: usize, end: usize);
    fn plot2d(data: Vec<[f64; 6]>, chunk_size: u32);
    fn animate2d(data: Vec<[f64; 6]>, chunk_size: u32, start: usize, end: usize);
}