| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 // WARNING: Do not edit - generated code. |
| 6 |
| 7 /// @domName SVGPathSegArcAbs |
| 8 interface SVGPathSegArcAbs extends SVGPathSeg { |
| 9 |
| 10 /** @domName SVGPathSegArcAbs.angle */ |
| 11 num angle; |
| 12 |
| 13 /** @domName SVGPathSegArcAbs.largeArcFlag */ |
| 14 bool largeArcFlag; |
| 15 |
| 16 /** @domName SVGPathSegArcAbs.r1 */ |
| 17 num r1; |
| 18 |
| 19 /** @domName SVGPathSegArcAbs.r2 */ |
| 20 num r2; |
| 21 |
| 22 /** @domName SVGPathSegArcAbs.sweepFlag */ |
| 23 bool sweepFlag; |
| 24 |
| 25 /** @domName SVGPathSegArcAbs.x */ |
| 26 num x; |
| 27 |
| 28 /** @domName SVGPathSegArcAbs.y */ |
| 29 num y; |
| 30 } |
| OLD | NEW |