diff options
Diffstat (limited to 'src/knotholder.cpp')
| -rw-r--r-- | src/knotholder.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/knotholder.cpp b/src/knotholder.cpp index 59059c2a8..10d03982c 100644 --- a/src/knotholder.cpp +++ b/src/knotholder.cpp @@ -1,5 +1,5 @@ /* - * Container for SPKnot visual handles + * Container for SPKnot visual handles. * * Authors: * Mitsuru Oka <oka326@parkcity.ne.jp> @@ -85,8 +85,6 @@ KnotHolder::~KnotHolder() { void KnotHolder::update_knots() { - Geom::Affine const i2d(item->i2d_affine()); - for(std::list<KnotHolderEntity *>::iterator i = entity.begin(); i != entity.end(); ++i) { KnotHolderEntity *e = *i; e->update_knot(); @@ -94,7 +92,7 @@ KnotHolder::update_knots() } /** - * \brief Returns true if at least one of the KnotHolderEntities has the mouse hovering above it + * Returns true if at least one of the KnotHolderEntities has the mouse hovering above it. */ bool KnotHolder::knot_mouseover() { @@ -165,8 +163,8 @@ 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) { - Geom::Point const q = p * item->i2d_affine().inverse(); - e->knot_set(q, e->knot->drag_origin * item->i2d_affine().inverse(), state); + Geom::Point const q = p * item->i2dt_affine().inverse(); + e->knot_set(q, e->knot->drag_origin * item->i2dt_affine().inverse(), state); break; } } |
