Lines Matching defs:what
282 Moves \a what away from \a from by \a dist
285 unclump_push (SPItem *from, SPItem *what, double dist)
287 Geom::Point it = unclump_center (what);
293 std::map<const gchar *, Geom::Point>::iterator i = c_cache.find(what->getId());
298 //g_print ("push %s at %g,%g from %g,%g by %g,%g, dist %g\n", what->getId(), it[Geom::X],it[Geom::Y], p[Geom::X],p[Geom::Y], by[Geom::X],by[Geom::Y], dist);
300 what->set_i2d_affine(what->i2dt_affine() * move);
301 what->doWriteTransform(what->getRepr(), what->transform, NULL);
305 Moves \a what towards \a to by \a dist
308 unclump_pull (SPItem *to, SPItem *what, double dist)
310 Geom::Point it = unclump_center (what);
316 std::map<const gchar *, Geom::Point>::iterator i = c_cache.find(what->getId());
321 //g_print ("pull %s at %g,%g to %g,%g by %g,%g, dist %g\n", what->getId(), it[Geom::X],it[Geom::Y], p[Geom::X],p[Geom::Y], by[Geom::X],by[Geom::Y], dist);
323 what->set_i2d_affine(what->i2dt_affine() * move);
324 what->doWriteTransform(what->getRepr(), what->transform, NULL);