| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011, 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 interface SVGPathElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternal
ResourcesRequired, SVGStylable, SVGTransformable { | |
| 8 | |
| 9 SVGPathSegList get animatedNormalizedPathSegList(); | |
| 10 | |
| 11 SVGPathSegList get animatedPathSegList(); | |
| 12 | |
| 13 SVGPathSegList get normalizedPathSegList(); | |
| 14 | |
| 15 SVGAnimatedNumber get pathLength(); | |
| 16 | |
| 17 SVGPathSegList get pathSegList(); | |
| 18 | |
| 19 SVGPathSegArcAbs createSVGPathSegArcAbs(num x, num y, num r1, num r2, num angl
e, bool largeArcFlag, bool sweepFlag); | |
| 20 | |
| 21 SVGPathSegArcRel createSVGPathSegArcRel(num x, num y, num r1, num r2, num angl
e, bool largeArcFlag, bool sweepFlag); | |
| 22 | |
| 23 SVGPathSegClosePath createSVGPathSegClosePath(); | |
| 24 | |
| 25 SVGPathSegCurvetoCubicAbs createSVGPathSegCurvetoCubicAbs(num x, num y, num x1
, num y1, num x2, num y2); | |
| 26 | |
| 27 SVGPathSegCurvetoCubicRel createSVGPathSegCurvetoCubicRel(num x, num y, num x1
, num y1, num x2, num y2); | |
| 28 | |
| 29 SVGPathSegCurvetoCubicSmoothAbs createSVGPathSegCurvetoCubicSmoothAbs(num x, n
um y, num x2, num y2); | |
| 30 | |
| 31 SVGPathSegCurvetoCubicSmoothRel createSVGPathSegCurvetoCubicSmoothRel(num x, n
um y, num x2, num y2); | |
| 32 | |
| 33 SVGPathSegCurvetoQuadraticAbs createSVGPathSegCurvetoQuadraticAbs(num x, num y
, num x1, num y1); | |
| 34 | |
| 35 SVGPathSegCurvetoQuadraticRel createSVGPathSegCurvetoQuadraticRel(num x, num y
, num x1, num y1); | |
| 36 | |
| 37 SVGPathSegCurvetoQuadraticSmoothAbs createSVGPathSegCurvetoQuadraticSmoothAbs(
num x, num y); | |
| 38 | |
| 39 SVGPathSegCurvetoQuadraticSmoothRel createSVGPathSegCurvetoQuadraticSmoothRel(
num x, num y); | |
| 40 | |
| 41 SVGPathSegLinetoAbs createSVGPathSegLinetoAbs(num x, num y); | |
| 42 | |
| 43 SVGPathSegLinetoHorizontalAbs createSVGPathSegLinetoHorizontalAbs(num x); | |
| 44 | |
| 45 SVGPathSegLinetoHorizontalRel createSVGPathSegLinetoHorizontalRel(num x); | |
| 46 | |
| 47 SVGPathSegLinetoRel createSVGPathSegLinetoRel(num x, num y); | |
| 48 | |
| 49 SVGPathSegLinetoVerticalAbs createSVGPathSegLinetoVerticalAbs(num y); | |
| 50 | |
| 51 SVGPathSegLinetoVerticalRel createSVGPathSegLinetoVerticalRel(num y); | |
| 52 | |
| 53 SVGPathSegMovetoAbs createSVGPathSegMovetoAbs(num x, num y); | |
| 54 | |
| 55 SVGPathSegMovetoRel createSVGPathSegMovetoRel(num x, num y); | |
| 56 | |
| 57 int getPathSegAtLength(num distance); | |
| 58 | |
| 59 SVGPoint getPointAtLength(num distance); | |
| 60 | |
| 61 num getTotalLength(); | |
| 62 } | |
| OLD | NEW |