summaryrefslogtreecommitdiffstats
path: root/src/2geom/nearest-point.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2014-01-16 17:45:17 +0000
committerJohan B. C. Engelen <j.b.c.engelen@alumnus.utwente.nl>2014-01-16 17:45:17 +0000
commit096e6a7b96509afc811c4dafef94b53ccbb15638 (patch)
tree53858c9bbdaae0aec0f5bdaa968ac6ea8441e3d6 /src/2geom/nearest-point.cpp
parentAdd the ability to load external documents in xlink:hrefs such as the use ele... (diff)
downloadinkscape-096e6a7b96509afc811c4dafef94b53ccbb15638.tar.gz
inkscape-096e6a7b96509afc811c4dafef94b53ccbb15638.zip
2geom: remove accidentally forgotten debug message
(bzr r12940)
Diffstat (limited to 'src/2geom/nearest-point.cpp')
-rw-r--r--src/2geom/nearest-point.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/2geom/nearest-point.cpp b/src/2geom/nearest-point.cpp
index 75e1ebaad..c5dfc133c 100644
--- a/src/2geom/nearest-point.cpp
+++ b/src/2geom/nearest-point.cpp
@@ -61,7 +61,7 @@ double nearest_point( Point const& p,
}
if (c.isConstant()) return from;
SBasis dd = dot(c - p, dc);
- std::cout << dd << std::endl;
+ //std::cout << dd << std::endl;
std::vector<double> zeros = Geom::roots(dd);
double closest = from;