Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2016-05-05 23:00:36 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-05-05 23:14:36 +0300
commitcc650c3d075566c760088e59a316c7efee14fd4a (patch)
tree86fa7276fdc5b0eef0e95a7b863bb05f79b9c971 /source/blender/blenlib/intern/BLI_kdopbvh.c
parent7efdee75177eb43909e825499330c554d91853f1 (diff)
Add asserts to check bvhutils args are correct
Would have prevented previous error going unnoticed.
Diffstat (limited to 'source/blender/blenlib/intern/BLI_kdopbvh.c')
-rw-r--r--source/blender/blenlib/intern/BLI_kdopbvh.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/BLI_kdopbvh.c b/source/blender/blenlib/intern/BLI_kdopbvh.c
index bba3fdb37bc..f0fc2c70708 100644
--- a/source/blender/blenlib/intern/BLI_kdopbvh.c
+++ b/source/blender/blenlib/intern/BLI_kdopbvh.c
@@ -1114,6 +1114,14 @@ void BLI_bvhtree_update_tree(BVHTree *tree)
for (; index >= root; index--)
node_join(tree, *index);
}
+/**
+ * Number of times #BLI_bvhtree_insert has been called.
+ * mainly useful for asserts functions to check we added the correct number.
+ */
+int BLI_bvhtree_get_size(const BVHTree *tree)
+{
+ return tree->totleaf;
+}
float BLI_bvhtree_getepsilon(const BVHTree *tree)
{