From e8c27b1bbad7ad960378ad65ddc41c882fd61bc5 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 20 Sep 2018 12:53:39 +1000 Subject: Cleanup: use win_to_3d_on_plane function --- source/blender/editors/mesh/editmesh_add_gizmo.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'source/blender/editors/mesh/editmesh_add_gizmo.c') diff --git a/source/blender/editors/mesh/editmesh_add_gizmo.c b/source/blender/editors/mesh/editmesh_add_gizmo.c index 850ca27d26a..253f546c7af 100644 --- a/source/blender/editors/mesh/editmesh_add_gizmo.c +++ b/source/blender/editors/mesh/editmesh_add_gizmo.c @@ -99,15 +99,9 @@ static void calc_initial_placement_point_from_view( } if (use_mouse_project) { - float ray_co[3], ray_no[3]; - ED_view3d_win_to_ray( - ar, mval, - ray_co, ray_no); float plane[4]; plane_from_point_normal_v3(plane, cursor_matrix[3], orient_matrix[2]); - float lambda; - if (isect_ray_plane_v3(ray_co, ray_no, plane, &lambda, true)) { - madd_v3_v3v3fl(r_location, ray_co, ray_no, lambda); + if (ED_view3d_win_to_3d_on_plane(ar, plane, mval, true, r_location)) { copy_m3_m3(r_rotation, orient_matrix); return; } -- cgit v1.2.3