libbubulle/tools/objtrucs.h

22 lines
466 B
C
Raw Normal View History

2023-04-09 11:13:56 +02:00
/*
* EXPERIMENTAL CODE !
2023-04-14 10:10:01 +02:00
*
2023-04-20 22:33:46 +02:00
* see also 'rdwredges.c' & 'export_evblob.c'
2023-04-09 11:13:56 +02:00
*/
2023-04-20 22:33:46 +02:00
#define EVBLOB_MAGIC (65872139)
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
/* in importobj.c */
int try_to_read_an_OBJ_file(char *fname, int outstyle);
2023-04-09 11:13:56 +02:00
/* in rdwredges.c */
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);