2 // This code written in 2010 by Forest Hale (lordhavoc ghdigital com), and placed into public domain.
4 // Based on information in http://zach.in.tu-clausthal.de/papers/vrst02.html (in particular vrst02_boxtree.pdf)
9 typedef enum biherror_e
11 BIHERROR_OK, // no error, be happy
12 BIHERROR_OUT_OF_NODES, // could not produce complete hierarchy, maxnodes too low (should be roughly half of numleafs)
16 typedef enum bih_nodetype_e
25 typedef struct bih_node_s
27 bih_nodetype_t type; // = BIH_SPLITX and similar values
28 // TODO: store just one float for distance, and have BIH_SPLITMINX and BIH_SPLITMAXX distinctions, to reduce memory footprint and traversal time, as described in the paper (vrst02_boxtree.pdf)
29 // TODO: move bounds data to parent node and remove it from leafs?
32 // < 0 is a leaf index (-1-leafindex), >= 0 is another node index (always >= this node's index)
35 // interval of children
36 float frontmin; // children[0]
37 float backmax; // children[1]
41 typedef struct bih_leaf_s
43 bih_nodetype_t type; // = BIH_LEAF
46 // data past this point is generic and entirely up to the caller...
48 int itemindex; // triangle or brush index
55 // leafs are constructed by caller before calling BIH_Build
58 // nodes are constructed by BIH_Build
61 int rootnode; // 0 if numnodes > 0, -1 otherwise
62 // bounds calculated by BIH_Build
66 // fields used only during BIH_Build:
68 int error; // set to a value if an error occurs in building (such as numnodes == maxnodes)
74 int BIH_Build(bih_t *bih, int numleafs, bih_leaf_t *leafs, int maxnodes, bih_node_t *nodes, int *temp_leafsort, int *temp_leafsortscratch);