libbubulle/tools/objtrucs.h

18 lines
312 B
C
Raw Normal View History

2023-04-09 11:13:56 +02:00
/*
* EXPERIMENTAL CODE !
2023-04-14 10:10:01 +02:00
*
* see also 'rdwredges.c
2023-04-09 11:13:56 +02:00
*/
typedef struct {
unsigned long magic;
BBList *Blist;
EdgeList *Elist;
int status;
2023-04-14 10:10:01 +02:00
} EdgesAndVertices;
2023-04-09 11:13:56 +02:00
int x_write_vertedges(char *filename, BBList *bblist, EdgeList *edges);
2023-04-14 10:10:01 +02:00
int x_load_vertedges(char *filename, EdgesAndVertices *eav);