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>2013-04-16 19:16:48 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-16 19:16:48 +0400
commit9f5006a9670b655292d8cf534d474991a63f344c (patch)
tree851a8f3ebcd7f6bc18184bdc765401600467c184 /source/blender/blenkernel/BKE_editmesh_bvh.h
parent53c9507c2878b38176c841c4a2172ea7f543aaba (diff)
add distance arg to BKE_bmbvh_ray_cast(). currently unused.
Diffstat (limited to 'source/blender/blenkernel/BKE_editmesh_bvh.h')
-rw-r--r--source/blender/blenkernel/BKE_editmesh_bvh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_editmesh_bvh.h b/source/blender/blenkernel/BKE_editmesh_bvh.h
index cdab48f239c..b0761f216d2 100644
--- a/source/blender/blenkernel/BKE_editmesh_bvh.h
+++ b/source/blender/blenkernel/BKE_editmesh_bvh.h
@@ -45,7 +45,7 @@ BMBVHTree *BKE_bmbvh_new(struct BMEditMesh *em, int flag, struct Scene *sce
void BKE_bmbvh_free(BMBVHTree *tree);
struct BVHTree *BKE_bmbvh_tree_get(BMBVHTree *tree);
struct BMFace *BKE_bmbvh_ray_cast(BMBVHTree *tree, const float co[3], const float dir[3],
- float r_hitout[3], float r_cagehit[3]);
+ float *r_dist, float r_hitout[3], float r_cagehit[3]);
/* find a vert closest to co in a sphere of radius maxdist */
struct BMVert *BKE_bmbvh_find_vert_closest(BMBVHTree *tree, const float co[3], const float maxdist);