summaryrefslogtreecommitdiffstats
path: root/src/trace/trace.cpp
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2008-10-11 15:16:23 +0000
committerTed Gould <ted@canonical.com>2008-10-11 15:16:23 +0000
commit2f5eb047d9e05be5e68549ef6b75070d2faa7d2f (patch)
treeca2e94164b6d7aaebfc17196ca46bfc825a7665a /src/trace/trace.cpp
parentMerge from trunk. (diff)
downloadinkscape-2f5eb047d9e05be5e68549ef6b75070d2faa7d2f.tar.gz
inkscape-2f5eb047d9e05be5e68549ef6b75070d2faa7d2f.zip
Merging from trunk
(bzr r6884)
Diffstat (limited to 'src/trace/trace.cpp')
-rw-r--r--src/trace/trace.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/trace/trace.cpp b/src/trace/trace.cpp
index 95c144e28..33e4ea3a1 100644
--- a/src/trace/trace.cpp
+++ b/src/trace/trace.cpp
@@ -28,7 +28,7 @@
#include <sp-shape.h>
#include <sp-image.h>
#include <libnr/nr-matrix-ops.h>
-#include <libnr/nr-scale-translate-ops.h>
+#include <2geom/transforms.h>
#include <display/nr-arena.h>
#include <display/nr-arena-shape.h>
@@ -507,8 +507,8 @@ void Tracer::traceThread()
double iwscale = width / iwidth;
double ihscale = height / iheight;
- NR::translate trans(x, y);
- NR::scale scal(iwscale, ihscale);
+ Geom::Translate trans(x, y);
+ Geom::Scale scal(iwscale, ihscale);
//# Convolve scale, translation, and the original transform
NR::Matrix tf(scal * trans);