From 141ed2d34edae87a7d529416a764b563574c719a Mon Sep 17 00:00:00 2001 From: Nathan Lee <2431820-nathanal@users.noreply.gitlab.com> Date: Fri, 17 May 2019 19:49:15 +1000 Subject: Change Path Cutting for Arcs The arc's sweep and large arc flags are wrong. Also remove early return (proper error handling already present). https://gitlab.com/inkscape/inkscape/issues/250 --- src/livarot/PathOutline.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/livarot/PathOutline.cpp') diff --git a/src/livarot/PathOutline.cpp b/src/livarot/PathOutline.cpp index a1bc7db13..4e0cefec7 100644 --- a/src/livarot/PathOutline.cpp +++ b/src/livarot/PathOutline.cpp @@ -955,8 +955,6 @@ void Path::TangentOnArcAt(double at, const Geom::Point &iS, PathDescrArcTo const csex /= rx; csey /= ry; double l = csex * csex + csey * csey; - if (l >= 4) - return; double const d = sqrt(std::max(1 - l / 4, 0.0)); double csdx = csey; double csdy = -csex; -- cgit v1.2.3