foo
[meshfrac] / src / frac.h
1 #ifndef FRAC_H_
2 #define FRAC_H_
3
4 #include "cmesh.h"
5 #include "cgmath/cgmath.h"
6 #include "geom.h"
7
8 struct frac_cell {
9         cgm_vec3 pt;
10         struct cmesh *mesh;
11         struct plane *planes;                   /* dynarr */
12 };
13
14 struct fracture {
15         struct cmesh *mesh;                     /* no ownership */
16         struct frac_cell *cells;        /* dynarr */
17 };
18
19 int frac_init(struct fracture *frac);
20 void frac_destroy(struct fracture *frac);
21
22 /* fracture does not take ownership of the mesh, and does not modify it */
23 void frac_mesh(struct fracture *frac, const struct cmesh *m);
24
25 int frac_point(struct fracture *frac, float x, float y, float z);
26 int frac_num_cells(struct fracture *frac);
27
28 /* add a bunch of random points in the bounding box of the mesh */
29 int frac_gen_points(struct fracture *frac, int num);
30
31 /* construct the voronoi cells */
32 int frac_build_cells(struct fracture *frac);
33 /* generate the polygons for the outer shell of each cell */
34 int frac_build_shell(struct fracture *frac);
35 /* generate the polygons for the inner walls of the cells */
36 int frac_build_walls(struct fracture *frac);
37
38 /* perform all the steps in order */
39 int frac_build(struct fracture *frac);
40
41
42 #endif  /* FRAC_H_ */