diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2018-10-03 00:48:42 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2018-10-03 00:48:42 -0700 |
commit | d25ab83c081e71af38884cfd8b0998732607422c (patch) | |
tree | 5cd3341ca2b00e3fb9ce5f2625126f2b65b9b5be /src/ix3.c | |
parent | f237569844cbd6524196253ecc486ec59a78284e (diff) |
libix3: make split_node() static
This is a private helper function.
Diffstat (limited to 'src/ix3.c')
-rw-r--r-- | src/ix3.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -349,7 +349,7 @@ static void remove_object(ix3_object_t *object) /* Split node and distribute objects referenced from node->objects into a * newly created node->children. */ -ix3_node_t * split_node(ix3_t *ix3, unsigned *depth, ix3_node_t *node, bb3f_t *node_aabb) +static ix3_node_t * split_node(ix3_t *ix3, unsigned *depth, ix3_node_t *node, bb3f_t *node_aabb) { bb3f_t octrants[8]; ix3_object_ref_t *r, *_r; |