#include "smyrnadefs.h"
#include "hier.h"
+#include "delaunay.h"
#include "memory.h"
/* scale_coords:
#ifdef DEBUG
static void
-dumpG (int nn, vtx_data * graph)
+dumpG (int nn, v_data * graph)
{
int i, j;
for (i=0; i < nn; i++) {
#endif
-Hierarchy *makeHier(int nn, int ne, vtx_data * graph, double *x_coords,
+Hierarchy *makeHier(int nn, int ne, v_data * graph, double *x_coords,
double *y_coords, hierparms_t* parms)
{
- vtx_data *delaunay;
+ v_data *delaunay;
ex_vtx_data *geom_graph;
int ngeom_edges;
Hierarchy *hp;
} reposition_t;
void positionAllItems(Hierarchy * hp, focus_t * fs, reposition_t* parms);
-Hierarchy *makeHier(int nnodes, int nedges, vtx_data *, double *,
+Hierarchy *makeHier(int nnodes, int nedges, v_data *, double *,
double*, hierparms_t *);
focus_t *initFocus(int ncnt);