blender/tests
Alexander Gavrilov 84fa806491 BLI_kdopbvh: add an option to use a priority queue in find_nearest.
Simple find_nearest relies on a heuristic for efficient culling of
the BVH tree, which involves a fast callback that always updates the
result, and the caller reusing the result of the previous find_nearest
to prime the process for the next vertex.

If the callback is slow and/or applies significant restrictions on
what kind of nodes can qualify for the result, the heuristic can't
work. Thus for such tasks it is necessary to order and prune nodes
before the callback at BVH tree level using a priority queue.

Since, according to code history, for simple find_nearest the
heuristic approach is faster, this mode has to be an option.
2018-11-06 21:20:16 +03:00
..
gtests BLI_kdopbvh: add an option to use a priority queue in find_nearest. 2018-11-06 21:20:16 +03:00
python Merge branch 'master' into blender2.8 2018-10-09 08:46:00 +11:00
check_deprecated.py Cleanup: pep8 2018-07-03 06:55:02 +02:00
CMakeLists.txt Cleanup: use prefix for tests 2018-02-14 16:02:21 +11:00