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/editors/mesh/editmesh_utils.c
parent53c9507c2878b38176c841c4a2172ea7f543aaba (diff)
add distance arg to BKE_bmbvh_ray_cast(). currently unused.
Diffstat (limited to 'source/blender/editors/mesh/editmesh_utils.c')
-rw-r--r--source/blender/editors/mesh/editmesh_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_utils.c b/source/blender/editors/mesh/editmesh_utils.c
index eb32aee8d43..01e3ed4f4cb 100644
--- a/source/blender/editors/mesh/editmesh_utils.c
+++ b/source/blender/editors/mesh/editmesh_utils.c
@@ -1391,7 +1391,7 @@ int BMBVH_VertVisible(BMBVHTree *tree, BMEdge *e, RegionView3D *r3d)
static BMFace *edge_ray_cast(struct BMBVHTree *tree, const float co[3], const float dir[3], float *r_hitout, BMEdge *e)
{
- BMFace *f = BKE_bmbvh_ray_cast(tree, co, dir, r_hitout, NULL);
+ BMFace *f = BKE_bmbvh_ray_cast(tree, co, dir, NULL, r_hitout, NULL);
if (f && BM_edge_in_face(f, e))
return NULL;