fixtransforms branch: Fix webkit by handling matrix() transforms in SVGEditTransformList shim

git-svn-id: http://svg-edit.googlecode.com/svn/branches/fixtransforms@1035 eee81c28-f429-11dd-99c0-75d572ba1ddd
master
Jeff Schiller 2009-12-13 04:14:41 +00:00
parent f2c98ab46e
commit 56884531a5
1 changed files with 3 additions and 0 deletions

View File

@ -2031,6 +2031,9 @@ function BatchCommand(text) {
var tobj = {tx:0,ty:0,sx:1,sy:1,angle:0,cx:0,cy:0,text:""};
var z = mZoom?current_zoom:1;
switch(xform.type) {
case 1: // MATRIX
tobj.text = "matrix(" + [m.a,m.b,m.c,m.d,m.e,m.f].join(",") + ")";
break;
case 2: // TRANSLATE
tobj.tx = m.e;
tobj.ty = m.f;