Skip to content

Instantly share code, notes, and snippets.

@mflux
Created September 26, 2014 01:49
Show Gist options
  • Select an option

  • Save mflux/13fce63dc307cbdfb68c to your computer and use it in GitHub Desktop.

Select an option

Save mflux/13fce63dc307cbdfb68c to your computer and use it in GitHub Desktop.

Revisions

  1. mflux created this gist Sep 26, 2014.
    8 changes: 8 additions & 0 deletions fixgrouptoshapes.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,8 @@
    function fixGroupToShapes( g ){
    var bb = g.getBoundingClientRect();
    var cx = bb.width * 0.5 + bb.left;
    var cy = bb.height * 0.5 + bb.top;
    g.center();
    g.translation.x = cx;
    g.translation.y = cy;
    }