summaryrefslogtreecommitdiffstats
path: root/src/libavoid
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2013-10-30 01:29:41 +0000
committerJabiertxof <jtx@jtx.marker.es>2013-10-30 01:29:41 +0000
commit69fdb9c26ab5c065e3e892a77982413f34dac7fe (patch)
tree4d6052268d7a9a0d6eedc159256a0bcffe69ff78 /src/libavoid
parentUpdate to trunk (diff)
parentsuppress uninitialized variables (x and y) warning, don't ask why... g++'s wa... (diff)
downloadinkscape-69fdb9c26ab5c065e3e892a77982413f34dac7fe.tar.gz
inkscape-69fdb9c26ab5c065e3e892a77982413f34dac7fe.zip
Update to trunk
(bzr r11950.1.191)
Diffstat (limited to 'src/libavoid')
-rw-r--r--src/libavoid/connector.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libavoid/connector.cpp b/src/libavoid/connector.cpp
index cf8cfa11a..8dcb66f2d 100644
--- a/src/libavoid/connector.cpp
+++ b/src/libavoid/connector.cpp
@@ -1736,7 +1736,8 @@ CrossingsInfoPair countRealCrossings(Avoid::Polygon& poly,
!reversedY);
}
else
- {
+ { /// \todo FIXME: this whole branch was not doing anything
+ /*
int turnDirA = vecDir(a0, a1, a2);
int turnDirB = vecDir(b0, b1, b2);
bool reversed = (side1 != -turnDirA);
@@ -1761,6 +1762,7 @@ CrossingsInfoPair countRealCrossings(Avoid::Polygon& poly,
}
VertID vID(b1.id, true, b1.vn);
//(*pointOrders)[b1].addPoints(&b1, &a1, reversed);
+ */
}
}
}