diff options
| author | Liam P. White <inkscapebrony@gmail.com> | 2015-04-04 13:32:14 +0000 |
|---|---|---|
| committer | Liam P. White <inkscapebrony@gmail.com> | 2015-04-04 13:32:14 +0000 |
| commit | 6c059f826b8e43e0bfb0516e4c9a2ecab77bdacf (patch) | |
| tree | 157ea72e9311ee742065321470dfe5117a120abc /src/helper/geom-pathstroke.cpp | |
| parent | Call decide() with subpaths in proper order. (diff) | |
| download | inkscape-6c059f826b8e43e0bfb0516e4c9a2ecab77bdacf.tar.gz inkscape-6c059f826b8e43e0bfb0516e4c9a2ecab77bdacf.zip | |
herpderp
(bzr r14044)
Diffstat (limited to 'src/helper/geom-pathstroke.cpp')
| -rw-r--r-- | src/helper/geom-pathstroke.cpp | 2 |
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); } |
