chiark / gitweb /
wip new graph layout stuff before abandoning
[moebius2.git] / bgl.h
1 /*
2  * Definitions exported and imported by our BGL-using stuff
3  */
4
5 #ifndef BGL_H
6 #define BGL_H
7
8 #include "mgraph.h"
9
10 double graph_layout_cost(const Vertices v, const double vertex_areas[N]);
11 void graph_layout_prepare();
12
13 double noncircular_rim_cost(const Vertices vertices);
14 double edgewise_vertex_displacement_cost(const Vertices vertices);
15
16 #endif /*BGL_H*/