summaryrefslogtreecommitdiffstats
path: root/src/live_effects
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2015-03-26 23:01:44 +0000
committerJabiertxof <jtx@jtx.marker.es>2015-03-26 23:01:44 +0000
commitedc48d93d2b528c20b9adb0f7d074c73c46f03eb (patch)
treef97fd9fb2682f2d844a54ebc84d796ffb7dc25f2 /src/live_effects
parentupdate to trunk (diff)
downloadinkscape-edc48d93d2b528c20b9adb0f7d074c73c46f03eb.tar.gz
inkscape-edc48d93d2b528c20b9adb0f7d074c73c46f03eb.zip
adding append mode
(bzr r13645.1.54)
Diffstat (limited to 'src/live_effects')
-rw-r--r--src/live_effects/lpe-fillet-chamfer.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/live_effects/lpe-fillet-chamfer.cpp b/src/live_effects/lpe-fillet-chamfer.cpp
index 6b388b0f6..55e1f93aa 100644
--- a/src/live_effects/lpe-fillet-chamfer.cpp
+++ b/src/live_effects/lpe-fillet-chamfer.cpp
@@ -421,8 +421,10 @@ void LPEFilletChamfer::doBeforeEffect(SPLPEItem const *lpeItem)
void
LPEFilletChamfer::adjustForNewPath(std::vector<Geom::Path> const &path_in)
{
+ std::cout << "1111111111111111111111111111111111111111\n";
if (!path_in.empty() && pointwise) {
- pointwise->recalculate_for_new_pwd2(remove_short_cuts(paths_to_pw(pathv_to_linear_and_cubic_beziers(path_in)),0.01));
+ std::cout << "222222222222222222222222222222222222222222222\n";
+ pointwise->recalculate_for_new_pwd2(pathv_to_linear_and_cubic_beziers(path_in)[0].toPwSb());
pointwise->set_extremes(true, false, true, 0.0, 0.0);
satellitepairarrayparam_values.set_pointwise(pointwise);
}