Last active
August 29, 2015 14:02
-
-
Save ponychicken/e5589db1d04e15277789 to your computer and use it in GitHub Desktop.
Revisions
-
ponychicken revised this gist
Jun 24, 2014 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -432,10 +432,12 @@ switch (key) { case 'transform': if (value === 'none') break; var m = node.getCTM(); if (m === null) break; var matrix = new Two.Matrix(m.a, m.b, m.c, m.d, m.e, m.f); // Option 1: edit the underlying matrix and don't force an auto calc. // var m = node.getCTM(); // elem._matrix.manual = true; -
ponychicken created this gist
Jun 24, 2014 .There are no files selected for viewing