summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-bendpath.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2014-11-15 17:29:41 +0000
committerJabiertxof <jtx@jtx.marker.es>2014-11-15 17:29:41 +0000
commita5333b6abc807176319c96d66cb7111e70f4896f (patch)
tree5d835204a110f9fa328e96919078edf83af69784 /src/live_effects/lpe-bendpath.cpp
parentSix a bug on subpaths pointed by suv (diff)
downloadinkscape-a5333b6abc807176319c96d66cb7111e70f4896f.tar.gz
inkscape-a5333b6abc807176319c96d66cb7111e70f4896f.zip
ignore this commit
(bzr r13682.1.9)
Diffstat (limited to 'src/live_effects/lpe-bendpath.cpp')
-rw-r--r--src/live_effects/lpe-bendpath.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/live_effects/lpe-bendpath.cpp b/src/live_effects/lpe-bendpath.cpp
index 33171b184..968e12518 100644
--- a/src/live_effects/lpe-bendpath.cpp
+++ b/src/live_effects/lpe-bendpath.cpp
@@ -137,7 +137,9 @@ LPEBendPath::resetDefaults(SPItem const* item)
Geom::Point start(boundingbox_X.min(), (boundingbox_Y.max()+boundingbox_Y.min())/2);
Geom::Point end(boundingbox_X.max(), (boundingbox_Y.max()+boundingbox_Y.min())/2);
-
+ std::cout << start << "start\n";
+ std::cout << start << "end\n";
+ std::cout << boundingbox_X.min() << "boundingbox_X.min\n";
if ( Geom::are_near(start,end) ) {
end += Geom::Point(1.,0.);
}