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