Cleanup: use win_to_3d_on_plane for curve drawing

This commit is contained in:
Campbell Barton 2018-09-20 12:45:07 +10:00
parent abe36478c6
commit 1cc9022eb5
1 changed files with 1 additions and 6 deletions

View File

@ -194,12 +194,7 @@ static bool stroke_elem_project(
/* project to 'location_world' */
if (cdd->project.use_plane) {
/* get the view vector to 'location' */
float ray_origin[3], ray_direction[3];
ED_view3d_win_to_ray(ar, mval_fl, ray_origin, ray_direction);
float lambda;
if (isect_ray_plane_v3(ray_origin, ray_direction, cdd->project.plane, &lambda, true)) {
madd_v3_v3v3fl(r_location_world, ray_origin, ray_direction, lambda);
if (ED_view3d_win_to_3d_on_plane(ar, cdd->project.plane, mval_fl, true, r_location_world)) {
if (r_normal_world) {
zero_v3(r_normal_world);
}