summaryrefslogtreecommitdiffstats
path: root/src/splivarot.cpp
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2006-04-14 02:18:50 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2006-04-14 02:18:50 +0000
commitde625ad587dd2154f3019694fdc5d6ad4b69f63e (patch)
tree993f74ba17389b31cadd47bef2247fd423520700 /src/splivarot.cpp
parentAdded curves (diff)
downloadinkscape-de625ad587dd2154f3019694fdc5d6ad4b69f63e.tar.gz
inkscape-de625ad587dd2154f3019694fdc5d6ad4b69f63e.zip
reduce flattening precision back somewhat, to prevent too many new nodes appearing after a boolop
(bzr r516)
Diffstat (limited to 'src/splivarot.cpp')
-rw-r--r--src/splivarot.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/splivarot.cpp b/src/splivarot.cpp
index 8dbdcdfd7..065533f71 100644
--- a/src/splivarot.cpp
+++ b/src/splivarot.cpp
@@ -221,7 +221,7 @@ sp_selected_path_boolop(bool_op bop)
if ( bop == bool_op_inters || bop == bool_op_union || bop == bool_op_diff || bop == bool_op_symdiff ) {
// true boolean op
// get the polygons of each path, with the winding rule specified, and apply the operation iteratively
- originaux[0]->ConvertWithBackData(0.001);
+ originaux[0]->ConvertWithBackData(0.03);
originaux[0]->Fill(theShape, 0);
@@ -229,7 +229,7 @@ sp_selected_path_boolop(bool_op bop)
curOrig = 1;
for (GSList *l = il->next; l != NULL; l = l->next) {
- originaux[curOrig]->ConvertWithBackData(0.001);
+ originaux[curOrig]->ConvertWithBackData(0.03);
originaux[curOrig]->Fill(theShape, curOrig);