libbubulle/tools/read_obj.c

40 lines
734 B
C

/*
tentatives de lecture des OBJ
*/
#include <stdio.h>
#include <stdlib.h>
#include <libgen.h> // for basename(3)
#include "../bubulles.h"
int try_to_read_an_OBJ_file(char *fname,
char *outfname, char *file_edges,
int notused);
int verbosity = 0;
int main(int argc, char *argv[])
{
int foo;
char *fname; /* see manpage basename(3) */
fprintf(stderr, "\n### READ_OBJ %s %s\n\n", __DATE__, __TIME__);
if (2 != argc) {
bubulles_version(1);
exit(0);
}
verbosity = 1;
fname = basename(argv[1]);
fprintf (stderr, "input file name is '%s'\n", fname);
foo = try_to_read_an_OBJ_file(argv[1], "bulles.vertices", "bulles.edges", 0);
fprintf(stderr, "try to read '%s' -> %d\n", argv [1], foo);
return 0;
}