summaryrefslogtreecommitdiffstats
path: root/src/helper/geom-pathstroke.cpp
diff options
context:
space:
mode:
authorLiam P. White <inkscapebrony@gmail.com>2015-04-04 13:32:14 +0000
committerLiam P. White <inkscapebrony@gmail.com>2015-04-04 13:32:14 +0000
commit6c059f826b8e43e0bfb0516e4c9a2ecab77bdacf (patch)
tree157ea72e9311ee742065321470dfe5117a120abc /src/helper/geom-pathstroke.cpp
parentCall decide() with subpaths in proper order. (diff)
downloadinkscape-6c059f826b8e43e0bfb0516e4c9a2ecab77bdacf.tar.gz
inkscape-6c059f826b8e43e0bfb0516e4c9a2ecab77bdacf.zip
herpderp
(bzr r14044)
Diffstat (limited to 'src/helper/geom-pathstroke.cpp')
-rw-r--r--src/helper/geom-pathstroke.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helper/geom-pathstroke.cpp b/src/helper/geom-pathstroke.cpp
index 4b5a437b2..eb0c432c6 100644
--- a/src/helper/geom-pathstroke.cpp
+++ b/src/helper/geom-pathstroke.cpp
@@ -411,7 +411,7 @@ void join_inside(Geom::Path& res, Geom::Curve const& outgoing)
bool decide(Geom::Curve const& incoming, Geom::Curve const& outgoing)
{
Geom::Point tang1 = Geom::unitTangentAt(reverse(incoming.toSBasis()), 0.);
- Geom::Point tang2 = outgoing.unitTangentAt(0.);
+ Geom::Point tang2 = outgoing.unitTangentAt(0.);
return (Geom::cross(tang1, tang2) < 0);
}