diff options
| author | Diederik van Lierop <mail@diedenrezi.nl> | 2009-04-01 19:18:46 +0000 |
|---|---|---|
| committer | dvlierop2 <dvlierop2@users.sourceforge.net> | 2009-04-01 19:18:46 +0000 |
| commit | d5397dd1651f19ac6e131f93410b43172d1d365f (patch) | |
| tree | 0f9ede839b1a5bad80c3f35d74363c9db3914f80 /src/object-snapper.cpp | |
| parent | Fix for gradient code I committed recently (which accidentally used unsigned ... (diff) | |
| download | inkscape-d5397dd1651f19ac6e131f93410b43172d1d365f.tar.gz inkscape-d5397dd1651f19ac6e131f93410b43172d1d365f.zip | |
Remove some left-over debugging output that got accidentally committed
(bzr r7602)
Diffstat (limited to 'src/object-snapper.cpp')
| -rw-r--r-- | src/object-snapper.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/object-snapper.cpp b/src/object-snapper.cpp index 0ec1a7ba5..d47dc8647 100644 --- a/src/object-snapper.cpp +++ b/src/object-snapper.cpp @@ -305,7 +305,6 @@ void Inkscape::ObjectSnapper::_snapTranslatingGuideToNodes(SnappedConstraints &s Geom::Point p_proj = Geom::projection((*k).first, Geom::Line(p, p + Geom::rot90(guide_normal))); Geom::Coord dist = Geom::L2((*k).first - p_proj); // distance from node to the guide Geom::Coord dist2 = Geom::L2(p - p_proj); // distance from projection of node on the guide, to the mouse location - std::cout << "d1 = " << dist << " | d2 = " << dist2 << " | tol = " << tol << std::endl; if ((dist < tol && dist2 < tol) || getSnapperAlwaysSnap()) { s = SnappedPoint((*k).first, SNAPSOURCE_GUIDE, static_cast<Inkscape::SnapTargetType>((*k).second), dist, tol, getSnapperAlwaysSnap(), true); sc.points.push_back(s); |
