summaryrefslogtreecommitdiffstats
path: root/src/helper/geom-pathstroke.cpp
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2016-03-02 13:34:33 +0000
committertavmjong-free <tavmjong@free.fr>2016-03-02 13:34:33 +0000
commit7e69baf4baa9d56e51782e80958386a806c78eac (patch)
tree993825378fc8bc350a0c046a6f7e5c1f37843486 /src/helper/geom-pathstroke.cpp
parenttype in commit r14664 (diff)
downloadinkscape-7e69baf4baa9d56e51782e80958386a806c78eac.tar.gz
inkscape-7e69baf4baa9d56e51782e80958386a806c78eac.zip
Another small change to miter-limit for 'arcs' join to match SVG spec.
(bzr r14677)
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 3ef4b15da..d2e9f9a1b 100644
--- a/src/helper/geom-pathstroke.cpp
+++ b/src/helper/geom-pathstroke.cpp
@@ -557,7 +557,7 @@ void extrapolate_join_internal(join_data jd, int alternative)
Geom::Line bisector_chord = make_bisector_line(chord);
Geom::Line limit_line;
- double miter_limit = 2.0 * width * miter;
+ double miter_limit = width * miter;
bool clipped = false;
if (are_parallel(bisector_chord, ortho)) {