ezel 0.0.1

A good plotting library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub enum GraphLayoutAlgorithm {
    Spring,
    ScalableForceDirectedPlacement,
    Buchheim,
    Stress,
    Spectral,
}

impl GraphLayout {
    pub fn best_for_graph(g: ()) -> Self {
        Self::Spring
    }
}

pub struct GraphLayout {}