2020-06-05 09:17:17 +11:00
|
|
|
/*
|
|
|
|
tentatives de lecture des OBJ
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2023-03-30 14:39:36 +11:00
|
|
|
#include <libgen.h> // for basename(3)
|
|
|
|
|
2020-06-05 09:17:17 +11:00
|
|
|
#include "../bubulles.h"
|
|
|
|
|
2023-04-21 07:33:46 +11:00
|
|
|
int try_to_read_an_OBJ_file(char *fname, int outstyle);
|
2023-03-30 14:39:36 +11:00
|
|
|
|
|
|
|
|
|
|
|
int verbosity = 0;
|
2020-06-05 10:05:01 +11:00
|
|
|
|
2020-06-05 09:17:17 +11:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int foo;
|
2023-03-30 14:39:36 +11:00
|
|
|
char *fname; /* see manpage basename(3) */
|
2020-06-05 09:17:17 +11:00
|
|
|
|
2023-04-21 07:33:46 +11:00
|
|
|
fprintf(stderr, "\n### READ_OBJ compiled %s at %s\n", __DATE__, __TIME__);
|
2023-04-03 09:52:09 +11:00
|
|
|
|
2020-06-05 09:17:17 +11:00
|
|
|
if (2 != argc) {
|
|
|
|
bubulles_version(1);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2023-04-21 07:33:46 +11:00
|
|
|
verbosity = 0;
|
2023-03-30 14:39:36 +11:00
|
|
|
|
2023-04-21 07:33:46 +11:00
|
|
|
/*
|
2023-03-30 14:39:36 +11:00
|
|
|
fname = basename(argv[1]);
|
2023-04-03 09:52:09 +11:00
|
|
|
fprintf (stderr, "input file name is '%s'\n", fname);
|
2023-04-21 07:33:46 +11:00
|
|
|
*/
|
2020-06-05 09:17:17 +11:00
|
|
|
|
2023-04-21 07:33:46 +11:00
|
|
|
foo = try_to_read_an_OBJ_file(argv[1], 0);
|
2023-03-25 01:34:23 +11:00
|
|
|
fprintf(stderr, "try to read '%s' -> %d\n", argv [1], foo);
|
2020-06-05 09:17:17 +11:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|