Fix T48915: Wrong threshold on scaled objects and ortho view.

`ray_is_normalized` == true in DerivedMesh
This commit is contained in:
Germano Cavalcante 2016-07-21 16:36:20 -03:00
parent 14995c5617
commit b5ba14ef70

@ -1362,7 +1362,7 @@ static bool snapDerivedMesh(
if (BLI_bvhtree_find_nearest_to_ray( if (BLI_bvhtree_find_nearest_to_ray(
treedata->tree, ray_org_local, ray_normal_local, treedata->tree, ray_org_local, ray_normal_local,
false, ob_scale, &nearest, cb_test_ray_dist, &userdata) != -1) true, ob_scale, &nearest, cb_test_ray_dist, &userdata) != -1)
{ {
copy_v3_v3(r_loc, nearest.co); copy_v3_v3(r_loc, nearest.co);
mul_m4_v3(obmat, r_loc); mul_m4_v3(obmat, r_loc);