fix makefile + gitignore
[convexer.git] / src / test.c
1 #include "convexer.c"
2 #include "solid.h"
3
4 int main(int arc, const char *argv[])
5 {
6 cxr_vdf *vdo = cxr_vdf_open( "/home/harry/Documents/blender_addons_remote/addons/convexer/test.vmf" );
7
8 cxr_convert_mesh_to_vmf( &test_mesh, vdo );
9 cxr_vdf_close(vdo);
10 return 0;
11 }