summaryrefslogtreecommitdiffstats
path: root/src/helper/geom-pathstroke.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2015-06-25 16:15:05 +0000
committerJabiertxof <jtx@jtx.marker.es>2015-06-25 16:15:05 +0000
commit5c2d982cc636ee4e2bc12703c01c86e245dd821f (patch)
tree6e6f22800c7d38314e14eccd486b65c3c4286d81 /src/helper/geom-pathstroke.cpp
parentupdate to trunk (diff)
parentFix for the bug 1468396 (diff)
downloadinkscape-5c2d982cc636ee4e2bc12703c01c86e245dd821f.tar.gz
inkscape-5c2d982cc636ee4e2bc12703c01c86e245dd821f.zip
update to trunk
(bzr r13645.1.94)
Diffstat (limited to 'src/helper/geom-pathstroke.cpp')
-rw-r--r--src/helper/geom-pathstroke.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/helper/geom-pathstroke.cpp b/src/helper/geom-pathstroke.cpp
index 1df17acf5..930737572 100644
--- a/src/helper/geom-pathstroke.cpp
+++ b/src/helper/geom-pathstroke.cpp
@@ -420,7 +420,7 @@ void join_inside(join_data jd)
else if (cross.size() > 1) {
// I am not sure how well this will work -- we pick the join node closest
// to the cross point of the paths
- Geom::Point original = res.finalPoint()+Geom::rot90(jd.in_tang)*jd.width;
+ /*Geom::Point original = res.finalPoint()+Geom::rot90(jd.in_tang)*jd.width;
Geom::Coord trial = Geom::L2(res.pointAt(cross[0].ta)-original);
solution = 0;
for (size_t i = 1; i < cross.size(); ++i) {
@@ -431,7 +431,7 @@ void join_inside(join_data jd)
solution = i;
//printf("Found improved solution: %f\n", trial);
}
- }
+ }*/
}
if (solution != -1) {