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