Matrix.toTransformString()

返回给定矩阵的使用transform表示的字符串。


返回值

字符串。转换字符串。


使用
var m1 = new Snap.Matrix(1,2,3,4,5,6), m2 = new Snap.Matrix(2,0,0,1,20,20);
console.log(m1.toTransformString());
console.log(m2.toTransformString());
// 结果是:
// m1,2,3,4,5,6
// t20,20s2,1,0,0