| 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: |
| 6 // This file contains documentation that is merged into the real source. |
| 7 // Do not make code changes here. |
| 8 |
| 9 /// @domName SVGPathElement |
| 10 interface SVGPathElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternal
ResourcesRequired, SVGStylable, SVGTransformable { |
| 11 |
| 12 /** @domName SVGPathElement.animatedNormalizedPathSegList */ |
| 13 final SVGPathSegList animatedNormalizedPathSegList; |
| 14 |
| 15 /** @domName SVGPathElement.animatedPathSegList */ |
| 16 final SVGPathSegList animatedPathSegList; |
| 17 |
| 18 /** @domName SVGPathElement.normalizedPathSegList */ |
| 19 final SVGPathSegList normalizedPathSegList; |
| 20 |
| 21 /** @domName SVGPathElement.pathLength */ |
| 22 final SVGAnimatedNumber pathLength; |
| 23 |
| 24 /** @domName SVGPathElement.pathSegList */ |
| 25 final SVGPathSegList pathSegList; |
| 26 |
| 27 /** @domName SVGPathElement.createSVGPathSegArcAbs */ |
| 28 SVGPathSegArcAbs createSVGPathSegArcAbs(num x, num y, num r1, num r2, num angl
e, bool largeArcFlag, bool sweepFlag); |
| 29 |
| 30 /** @domName SVGPathElement.createSVGPathSegArcRel */ |
| 31 SVGPathSegArcRel createSVGPathSegArcRel(num x, num y, num r1, num r2, num angl
e, bool largeArcFlag, bool sweepFlag); |
| 32 |
| 33 /** @domName SVGPathElement.createSVGPathSegClosePath */ |
| 34 SVGPathSegClosePath createSVGPathSegClosePath(); |
| 35 |
| 36 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicAbs */ |
| 37 SVGPathSegCurvetoCubicAbs createSVGPathSegCurvetoCubicAbs(num x, num y, num x1
, num y1, num x2, num y2); |
| 38 |
| 39 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicRel */ |
| 40 SVGPathSegCurvetoCubicRel createSVGPathSegCurvetoCubicRel(num x, num y, num x1
, num y1, num x2, num y2); |
| 41 |
| 42 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs */ |
| 43 SVGPathSegCurvetoCubicSmoothAbs createSVGPathSegCurvetoCubicSmoothAbs(num x, n
um y, num x2, num y2); |
| 44 |
| 45 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel */ |
| 46 SVGPathSegCurvetoCubicSmoothRel createSVGPathSegCurvetoCubicSmoothRel(num x, n
um y, num x2, num y2); |
| 47 |
| 48 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticAbs */ |
| 49 SVGPathSegCurvetoQuadraticAbs createSVGPathSegCurvetoQuadraticAbs(num x, num y
, num x1, num y1); |
| 50 |
| 51 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticRel */ |
| 52 SVGPathSegCurvetoQuadraticRel createSVGPathSegCurvetoQuadraticRel(num x, num y
, num x1, num y1); |
| 53 |
| 54 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs */ |
| 55 SVGPathSegCurvetoQuadraticSmoothAbs createSVGPathSegCurvetoQuadraticSmoothAbs(
num x, num y); |
| 56 |
| 57 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel */ |
| 58 SVGPathSegCurvetoQuadraticSmoothRel createSVGPathSegCurvetoQuadraticSmoothRel(
num x, num y); |
| 59 |
| 60 /** @domName SVGPathElement.createSVGPathSegLinetoAbs */ |
| 61 SVGPathSegLinetoAbs createSVGPathSegLinetoAbs(num x, num y); |
| 62 |
| 63 /** @domName SVGPathElement.createSVGPathSegLinetoHorizontalAbs */ |
| 64 SVGPathSegLinetoHorizontalAbs createSVGPathSegLinetoHorizontalAbs(num x); |
| 65 |
| 66 /** @domName SVGPathElement.createSVGPathSegLinetoHorizontalRel */ |
| 67 SVGPathSegLinetoHorizontalRel createSVGPathSegLinetoHorizontalRel(num x); |
| 68 |
| 69 /** @domName SVGPathElement.createSVGPathSegLinetoRel */ |
| 70 SVGPathSegLinetoRel createSVGPathSegLinetoRel(num x, num y); |
| 71 |
| 72 /** @domName SVGPathElement.createSVGPathSegLinetoVerticalAbs */ |
| 73 SVGPathSegLinetoVerticalAbs createSVGPathSegLinetoVerticalAbs(num y); |
| 74 |
| 75 /** @domName SVGPathElement.createSVGPathSegLinetoVerticalRel */ |
| 76 SVGPathSegLinetoVerticalRel createSVGPathSegLinetoVerticalRel(num y); |
| 77 |
| 78 /** @domName SVGPathElement.createSVGPathSegMovetoAbs */ |
| 79 SVGPathSegMovetoAbs createSVGPathSegMovetoAbs(num x, num y); |
| 80 |
| 81 /** @domName SVGPathElement.createSVGPathSegMovetoRel */ |
| 82 SVGPathSegMovetoRel createSVGPathSegMovetoRel(num x, num y); |
| 83 |
| 84 /** @domName SVGPathElement.getPathSegAtLength */ |
| 85 int getPathSegAtLength(num distance); |
| 86 |
| 87 /** @domName SVGPathElement.getPointAtLength */ |
| 88 SVGPoint getPointAtLength(num distance); |
| 89 |
| 90 /** @domName SVGPathElement.getTotalLength */ |
| 91 num getTotalLength(); |
| 92 } |
| OLD | NEW |