OLD | NEW |
1 | 1 |
2 class _SVGPathSegArcAbsJs extends _SVGPathSegJs implements SVGPathSegArcAbs nati
ve "*SVGPathSegArcAbs" { | 2 class _SVGPathSegArcAbsJs extends _SVGPathSegJs implements SVGPathSegArcAbs nati
ve "*SVGPathSegArcAbs" { |
3 | 3 |
4 num get angle() native "return this.angle;"; | 4 num angle; |
5 | 5 |
6 void set angle(num value) native "this.angle = value;"; | 6 bool largeArcFlag; |
7 | 7 |
8 bool get largeArcFlag() native "return this.largeArcFlag;"; | 8 num r1; |
9 | 9 |
10 void set largeArcFlag(bool value) native "this.largeArcFlag = value;"; | 10 num r2; |
11 | 11 |
12 num get r1() native "return this.r1;"; | 12 bool sweepFlag; |
13 | 13 |
14 void set r1(num value) native "this.r1 = value;"; | 14 num x; |
15 | 15 |
16 num get r2() native "return this.r2;"; | 16 num y; |
17 | |
18 void set r2(num value) native "this.r2 = value;"; | |
19 | |
20 bool get sweepFlag() native "return this.sweepFlag;"; | |
21 | |
22 void set sweepFlag(bool value) native "this.sweepFlag = value;"; | |
23 | |
24 num get x() native "return this.x;"; | |
25 | |
26 void set x(num value) native "this.x = value;"; | |
27 | |
28 num get y() native "return this.y;"; | |
29 | |
30 void set y(num value) native "this.y = value;"; | |
31 } | 17 } |
OLD | NEW |