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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-09-20 05:45:07 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-09-20 05:45:07 +0300
commit1cc9022eb51b73abc84d79366a9cf54a561c7520 (patch)
treed87544343057116327c0e84d7b50835b21905c0e /source
parentabe36478c697a2e71fa7e92dc742704b9d583a16 (diff)
Cleanup: use win_to_3d_on_plane for curve drawing
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/curve/editcurve_paint.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/source/blender/editors/curve/editcurve_paint.c b/source/blender/editors/curve/editcurve_paint.c
index 80231a1261a..7472a0c8957 100644
--- a/source/blender/editors/curve/editcurve_paint.c
+++ b/source/blender/editors/curve/editcurve_paint.c
@@ -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);
}