Docs: correct description

This commit is contained in:
Campbell Barton 2016-02-09 16:29:16 +11:00
parent 69327137c0
commit ea3900c58f
1 changed files with 8 additions and 1 deletions

View File

@ -29,7 +29,12 @@
* \ingroup bli
* \brief BVH-tree implementation.
*
* KD-Overlap-BVH, implements a bvh-tree structure with support for:
* k-DOP BVH (Discrete Oriented Polytope, Bounding Volume Hierarchy).
* A k-DOP is represented as k/2 pairs of min , max values for k/2 directions (intervals, "slabs").
*
* See: http://www.gris.uni-tuebingen.de/people/staff/jmezger/papers/bvh.pdf
*
* implements a bvh-tree structure with support for:
*
* - Ray-cast:
* #BLI_bvhtree_ray_cast, #BVHRayCastData
@ -37,6 +42,8 @@
* #BLI_bvhtree_find_nearest, #BVHNearestData
* - Overlapping 2 trees:
* #BLI_bvhtree_overlap, #BVHOverlapData_Shared, #BVHOverlapData_Thread
* - Range Query:
* #BLI_bvhtree_range_query
*/
#include <assert.h>