From ac7b39224798b16db04ec1325a01c77228fb9e34 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 30 Jun 2012 17:54:55 +0000 Subject: code cleanup: some vars were assigned when not needed --- release/scripts/modules/bpy_extras/view3d_utils.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'release') diff --git a/release/scripts/modules/bpy_extras/view3d_utils.py b/release/scripts/modules/bpy_extras/view3d_utils.py index edc17c36c36..5608062c51b 100644 --- a/release/scripts/modules/bpy_extras/view3d_utils.py +++ b/release/scripts/modules/bpy_extras/view3d_utils.py @@ -77,9 +77,7 @@ def region_2d_to_location_3d(region, rv3d, coord, depth_location): :rtype: :class:`mathutils.Vector` """ from mathutils import Vector - from mathutils.geometry import intersect_point_line - persmat = rv3d.perspective_matrix.copy() viewinv = rv3d.view_matrix.inverted() coord_vec = region_2d_to_vector_3d(region, rv3d, coord) depth_location = Vector(depth_location) @@ -96,10 +94,11 @@ def region_2d_to_location_3d(region, rv3d, coord, depth_location): view_vec, 1, ) else: + from mathutils.geometry import intersect_point_line + persmat = rv3d.perspective_matrix.copy() dx = (2.0 * coord[0] / region.width) - 1.0 dy = (2.0 * coord[1] / region.height) - 1.0 persinv = persmat.inverted() - viewinv = rv3d.view_matrix.inverted() origin_start = ((persinv.col[0].xyz * dx) + (persinv.col[1].xyz * dy) + viewinv.translation) -- cgit v1.2.3