| 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 SVGPathSegCurvetoCubicRel |
| 8 interface SVGPathSegCurvetoCubicRel extends SVGPathSeg { |
| 9 |
| 10 /** @domName SVGPathSegCurvetoCubicRel.x */ |
| 11 num x; |
| 12 |
| 13 /** @domName SVGPathSegCurvetoCubicRel.x1 */ |
| 14 num x1; |
| 15 |
| 16 /** @domName SVGPathSegCurvetoCubicRel.x2 */ |
| 17 num x2; |
| 18 |
| 19 /** @domName SVGPathSegCurvetoCubicRel.y */ |
| 20 num y; |
| 21 |
| 22 /** @domName SVGPathSegCurvetoCubicRel.y1 */ |
| 23 num y1; |
| 24 |
| 25 /** @domName SVGPathSegCurvetoCubicRel.y2 */ |
| 26 num y2; |
| 27 } |
| OLD | NEW |