From 008de305ef8f6793bf72dd14d071adc752dc1b51 Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Fri, 18 Jan 2013 02:22:51 +0000 Subject: Removed unused variable d2 and calculation of its value in GeomUtils::intersect2dSeg2dSegParametric(). It is double-checked that this is not a bug :) This fix was suggested as part of the patch set committed in revision 53887, thanks again Bastien! --- source/blender/freestyle/intern/geometry/GeomUtils.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source/blender/freestyle') diff --git a/source/blender/freestyle/intern/geometry/GeomUtils.cpp b/source/blender/freestyle/intern/geometry/GeomUtils.cpp index 9d449305466..c0cd9450480 100644 --- a/source/blender/freestyle/intern/geometry/GeomUtils.cpp +++ b/source/blender/freestyle/intern/geometry/GeomUtils.cpp @@ -185,10 +185,9 @@ intersection_test intersect2dSeg2dSegParametric(const Vec2r& p1, const Vec2r& p2 if (fabs(denom) < epsilon) return (COLINEAR); - real d1, d2, e1; + real d1, e1; d1 = p1[1] - p3[1]; - d2 = p2[1] - p1[1]; e1 = p1[0] - p3[0]; num = -b2 * d1 - a2 * e1; -- cgit v1.2.3