Revert "ransform: fix unreported bug: geometry hidden by clipping border (alt + b) is not bypassed in snap to faces"

This reverts commit 7f09b55d01c248a741e967af597b7519f095983b.
This commit is contained in:
mano-wii 2017-07-24 12:08:23 -03:00
parent 7f09b55d01
commit 7fbd529fb5

@ -2408,12 +2408,10 @@ bool ED_transform_snap_object_project_view3d_ex(
return false;
}
float ray_end_dist = depth_get(ray_end, ray_start, ray_normal);
float ray_depth_fallback;
if (ray_depth == NULL) {
ray_depth = &ray_end_dist;
}
else if (*ray_depth > ray_end_dist) {
*ray_depth = ray_end_dist;
ray_depth_fallback = BVH_RAYCAST_DIST_MAX;
ray_depth = &ray_depth_fallback;
}
if (snap_to == SCE_SNAP_MODE_FACE) {