summaryrefslogtreecommitdiffstats
path: root/src/knotholder.cpp
diff options
context:
space:
mode:
authorJoshua L. Blocher <verbalshadow@gmail.com>2008-12-05 22:40:41 +0000
committerverbalshadow <verbalshadow@users.sourceforge.net>2008-12-05 22:40:41 +0000
commit856d8eb8210879d4a4e86f00bf1c332395428039 (patch)
tree73708e7e8b6c53a5d5e1bf5af774d9f79b47b553 /src/knotholder.cpp
parent2geom more as fix (diff)
downloadinkscape-856d8eb8210879d4a4e86f00bf1c332395428039.tar.gz
inkscape-856d8eb8210879d4a4e86f00bf1c332395428039.zip
NR -> 2Geom few more files
(bzr r6959)
Diffstat (limited to 'src/knotholder.cpp')
-rw-r--r--src/knotholder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/knotholder.cpp b/src/knotholder.cpp
index f7935c7c3..0cb9fc423 100644
--- a/src/knotholder.cpp
+++ b/src/knotholder.cpp
@@ -78,7 +78,7 @@ KnotHolder::~KnotHolder() {
void
KnotHolder::update_knots()
{
- NR::Matrix const i2d(sp_item_i2d_affine(item));
+ Geom::Matrix const i2d(sp_item_i2d_affine(item));
for(std::list<KnotHolderEntity *>::iterator i = entity.begin(); i != entity.end(); ++i) {
KnotHolderEntity *e = *i;
@@ -139,7 +139,7 @@ KnotHolder::knot_moved_handler(SPKnot *knot, Geom::Point const &p, guint state)
for(std::list<KnotHolderEntity *>::iterator i = this->entity.begin(); i != this->entity.end(); ++i) {
KnotHolderEntity *e = *i;
if (e->knot == knot) {
- NR::Point const q = p * sp_item_i2d_affine(item).inverse();
+ Geom::Point const q = p * sp_item_i2d_affine(item).inverse();
e->knot_set(q, e->knot->drag_origin * sp_item_i2d_affine(item).inverse(), state);
break;
}