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-02-10 21:47:05 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-02-10 21:47:05 +0300
commit0ba649549c3f5320d41f83c4e99da3fe28c80c67 (patch)
tree7f9a79d9801f41967ca367d4e63cd0bb6dda51b0 /source/blender/blenlib/BLI_kdopbvh.h
parentfce0e31bcf10efd97492f9303fefeb6a0b894889 (diff)
Cleanup: remove unused radius argument
Diffstat (limited to 'source/blender/blenlib/BLI_kdopbvh.h')
-rw-r--r--source/blender/blenlib/BLI_kdopbvh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_kdopbvh.h b/source/blender/blenlib/BLI_kdopbvh.h
index d7ff55eda7a..f1ef1d9f9b9 100644
--- a/source/blender/blenlib/BLI_kdopbvh.h
+++ b/source/blender/blenlib/BLI_kdopbvh.h
@@ -141,7 +141,7 @@ int BLI_bvhtree_find_nearest(
BVHTree_NearestPointCallback callback, void *userdata);
int BLI_bvhtree_find_nearest_to_ray(
- BVHTree *tree, const float co[3], const float dir[3], float radius, BVHTreeNearest *nearest,
+ BVHTree *tree, const float co[3], const float dir[3], BVHTreeNearest *nearest,
BVHTree_NearestToRayCallback callback, void *userdata);
int BLI_bvhtree_ray_cast_ex(