| OLD | NEW |
| 1 | 1 |
| 2 class SVGMatrix native "*SVGMatrix" { | 2 class SVGMatrix native "*SVGMatrix" { |
| 3 | 3 |
| 4 num a; | 4 num get a() native "return this.a;"; |
| 5 | 5 |
| 6 num b; | 6 void set a(num value) native "this.a = value;"; |
| 7 | 7 |
| 8 num c; | 8 num get b() native "return this.b;"; |
| 9 | 9 |
| 10 num d; | 10 void set b(num value) native "this.b = value;"; |
| 11 | 11 |
| 12 num e; | 12 num get c() native "return this.c;"; |
| 13 | 13 |
| 14 num f; | 14 void set c(num value) native "this.c = value;"; |
| 15 |
| 16 num get d() native "return this.d;"; |
| 17 |
| 18 void set d(num value) native "this.d = value;"; |
| 19 |
| 20 num get e() native "return this.e;"; |
| 21 |
| 22 void set e(num value) native "this.e = value;"; |
| 23 |
| 24 num get f() native "return this.f;"; |
| 25 |
| 26 void set f(num value) native "this.f = value;"; |
| 15 | 27 |
| 16 SVGMatrix flipX() native; | 28 SVGMatrix flipX() native; |
| 17 | 29 |
| 18 SVGMatrix flipY() native; | 30 SVGMatrix flipY() native; |
| 19 | 31 |
| 20 SVGMatrix inverse() native; | 32 SVGMatrix inverse() native; |
| 21 | 33 |
| 22 SVGMatrix multiply(SVGMatrix secondMatrix) native; | 34 SVGMatrix multiply(SVGMatrix secondMatrix) native; |
| 23 | 35 |
| 24 SVGMatrix rotate(num angle) native; | 36 SVGMatrix rotate(num angle) native; |
| 25 | 37 |
| 26 SVGMatrix rotateFromVector(num x, num y) native; | 38 SVGMatrix rotateFromVector(num x, num y) native; |
| 27 | 39 |
| 28 SVGMatrix scale(num scaleFactor) native; | 40 SVGMatrix scale(num scaleFactor) native; |
| 29 | 41 |
| 30 SVGMatrix scaleNonUniform(num scaleFactorX, num scaleFactorY) native; | 42 SVGMatrix scaleNonUniform(num scaleFactorX, num scaleFactorY) native; |
| 31 | 43 |
| 32 SVGMatrix skewX(num angle) native; | 44 SVGMatrix skewX(num angle) native; |
| 33 | 45 |
| 34 SVGMatrix skewY(num angle) native; | 46 SVGMatrix skewY(num angle) native; |
| 35 | 47 |
| 36 SVGMatrix translate(num x, num y) native; | 48 SVGMatrix translate(num x, num y) native; |
| 37 | 49 |
| 38 var dartObjectLocalStorage; | 50 var dartObjectLocalStorage; |
| 39 | 51 |
| 40 String get typeName() native; | 52 String get typeName() native; |
| 41 } | 53 } |
| OLD | NEW |