diff options
Diffstat (limited to 'src/ix3.h')
-rw-r--r-- | src/ix3.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -23,9 +23,10 @@ typedef struct bb3f_t bb3f_t; typedef struct v3f_t v3f_t; typedef enum ix3_search_status_t { - IX3_SEARCH_STOP, - IX3_SEARCH_IGNORE, - IX3_SEARCH_CONTINUE + IX3_SEARCH_STOP_MISS, + IX3_SEARCH_STOP_HIT, + IX3_SEARCH_MORE_MISS, + IX3_SEARCH_MORE_HIT, } ix3_search_status_t; typedef ix3_search_status_t (*ix3_search_cb)(void *cb_context, ix3_object_t *ix3_object, v3f_t *ix3_object_position, bb3f_t *ix3_object_aabb, void *object); |