diff options
| author | Matthew Petroff <matthew@mpetroff.net> | 2013-09-02 19:51:04 +0000 |
|---|---|---|
| committer | Matthew Petroff <matthew@mpetroff.net> | 2013-09-02 19:51:04 +0000 |
| commit | 632414c7cdd5f8992c6d6439d25128b82e93d499 (patch) | |
| tree | cf5b544e03b0b165e8c6fe68e9345d6259f73e62 /src/sp-star.cpp | |
| parent | Forgot to remove "share/ui/units.txt" from "share/ui/Makefile.am". (diff) | |
| download | inkscape-632414c7cdd5f8992c6d6439d25128b82e93d499.tar.gz inkscape-632414c7cdd5f8992c6d6439d25128b82e93d499.zip | |
Fix bug that added transforms to new objects.
(bzr r12475.1.11)
Diffstat (limited to 'src/sp-star.cpp')
| -rw-r--r-- | src/sp-star.cpp | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/src/sp-star.cpp b/src/sp-star.cpp index af2420340..afc0b84d6 100644 --- a/src/sp-star.cpp +++ b/src/sp-star.cpp @@ -39,6 +39,7 @@ static void sp_star_update (SPObject *object, SPCtx *ctx, guint flags); static gchar * sp_star_description (SPItem * item); static void sp_star_snappoints(SPItem const *item, std::vector<Inkscape::SnapCandidatePoint> &p, Inkscape::SnapPreferences const *snapprefs); +static Geom::Affine sp_star_set_transform(SPItem *item, Geom::Affine const &xform); static void sp_star_set_shape (SPShape *shape); static void sp_star_update_patheffect (SPLPEItem *lpeitem, bool write); @@ -59,6 +60,7 @@ static void sp_star_class_init(SPStarClass *klass) item_class->description = sp_star_description; item_class->snappoints = sp_star_snappoints; + item_class->set_transform = sp_star_set_transform; lpe_item_class->update_patheffect = sp_star_update_patheffect; @@ -528,6 +530,60 @@ static void sp_star_snappoints(SPItem const *item, std::vector<Inkscape::SnapCan } } +static Geom::Affine sp_star_set_transform(SPItem *item, Geom::Affine const &xform) +{ + // Only set transform with proportional scaling + if (!xform.withoutTranslation().isUniformScale()) { + return xform; + } + + g_assert(item != NULL); + g_assert(SP_IS_STAR(item)); + + SPStar *star = SP_STAR(item); + + /* Calculate star start in parent coords. */ + Geom::Point pos( star->center * xform ); + + /* This function takes care of translation and scaling, we return whatever parts we can't + handle. */ + Geom::Affine ret(Geom::Affine(xform).withoutTranslation()); + gdouble const s = hypot(ret[0], ret[1]); + if (s > 1e-9) { + ret[0] /= s; + ret[1] /= s; + ret[2] /= s; + ret[3] /= s; + } else { + ret[0] = 1.0; + ret[1] = 0.0; + ret[2] = 0.0; + ret[3] = 1.0; + } + + star->r[0] *= s; + star->r[1] *= s; + + /* Find start in item coords */ + pos = pos * ret.inverse(); + star->center = pos; + + sp_star_set_shape(star); + + // Adjust stroke width + item->adjust_stroke(s); + + // Adjust pattern fill + item->adjust_pattern(xform * ret.inverse()); + + // Adjust gradient fill + item->adjust_gradient(xform * ret.inverse()); + + item->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_STYLE_MODIFIED_FLAG); + + return ret; +} + /** * sp_star_get_xy: Get X-Y value as item coordinate system * @star: star item |
