| OLD | NEW |
| (Empty) |
| 1 | |
| 2 class _SVGPathElementJs extends _SVGElementJs implements SVGPathElement native "
*SVGPathElement" { | |
| 3 | |
| 4 final _SVGPathSegListJs animatedNormalizedPathSegList; | |
| 5 | |
| 6 final _SVGPathSegListJs animatedPathSegList; | |
| 7 | |
| 8 final _SVGPathSegListJs normalizedPathSegList; | |
| 9 | |
| 10 final _SVGAnimatedNumberJs pathLength; | |
| 11 | |
| 12 final _SVGPathSegListJs pathSegList; | |
| 13 | |
| 14 _SVGPathSegArcAbsJs createSVGPathSegArcAbs(num x, num y, num r1, num r2, num a
ngle, bool largeArcFlag, bool sweepFlag) native; | |
| 15 | |
| 16 _SVGPathSegArcRelJs createSVGPathSegArcRel(num x, num y, num r1, num r2, num a
ngle, bool largeArcFlag, bool sweepFlag) native; | |
| 17 | |
| 18 _SVGPathSegClosePathJs createSVGPathSegClosePath() native; | |
| 19 | |
| 20 _SVGPathSegCurvetoCubicAbsJs createSVGPathSegCurvetoCubicAbs(num x, num y, num
x1, num y1, num x2, num y2) native; | |
| 21 | |
| 22 _SVGPathSegCurvetoCubicRelJs createSVGPathSegCurvetoCubicRel(num x, num y, num
x1, num y1, num x2, num y2) native; | |
| 23 | |
| 24 _SVGPathSegCurvetoCubicSmoothAbsJs createSVGPathSegCurvetoCubicSmoothAbs(num x
, num y, num x2, num y2) native; | |
| 25 | |
| 26 _SVGPathSegCurvetoCubicSmoothRelJs createSVGPathSegCurvetoCubicSmoothRel(num x
, num y, num x2, num y2) native; | |
| 27 | |
| 28 _SVGPathSegCurvetoQuadraticAbsJs createSVGPathSegCurvetoQuadraticAbs(num x, nu
m y, num x1, num y1) native; | |
| 29 | |
| 30 _SVGPathSegCurvetoQuadraticRelJs createSVGPathSegCurvetoQuadraticRel(num x, nu
m y, num x1, num y1) native; | |
| 31 | |
| 32 _SVGPathSegCurvetoQuadraticSmoothAbsJs createSVGPathSegCurvetoQuadraticSmoothA
bs(num x, num y) native; | |
| 33 | |
| 34 _SVGPathSegCurvetoQuadraticSmoothRelJs createSVGPathSegCurvetoQuadraticSmoothR
el(num x, num y) native; | |
| 35 | |
| 36 _SVGPathSegLinetoAbsJs createSVGPathSegLinetoAbs(num x, num y) native; | |
| 37 | |
| 38 _SVGPathSegLinetoHorizontalAbsJs createSVGPathSegLinetoHorizontalAbs(num x) na
tive; | |
| 39 | |
| 40 _SVGPathSegLinetoHorizontalRelJs createSVGPathSegLinetoHorizontalRel(num x) na
tive; | |
| 41 | |
| 42 _SVGPathSegLinetoRelJs createSVGPathSegLinetoRel(num x, num y) native; | |
| 43 | |
| 44 _SVGPathSegLinetoVerticalAbsJs createSVGPathSegLinetoVerticalAbs(num y) native
; | |
| 45 | |
| 46 _SVGPathSegLinetoVerticalRelJs createSVGPathSegLinetoVerticalRel(num y) native
; | |
| 47 | |
| 48 _SVGPathSegMovetoAbsJs createSVGPathSegMovetoAbs(num x, num y) native; | |
| 49 | |
| 50 _SVGPathSegMovetoRelJs createSVGPathSegMovetoRel(num x, num y) native; | |
| 51 | |
| 52 int getPathSegAtLength(num distance) native; | |
| 53 | |
| 54 _SVGPointJs getPointAtLength(num distance) native; | |
| 55 | |
| 56 num getTotalLength() native; | |
| 57 | |
| 58 // From SVGTests | |
| 59 | |
| 60 final _SVGStringListJs requiredExtensions; | |
| 61 | |
| 62 final _SVGStringListJs requiredFeatures; | |
| 63 | |
| 64 final _SVGStringListJs systemLanguage; | |
| 65 | |
| 66 bool hasExtension(String extension) native; | |
| 67 | |
| 68 // From SVGLangSpace | |
| 69 | |
| 70 String xmllang; | |
| 71 | |
| 72 String xmlspace; | |
| 73 | |
| 74 // From SVGExternalResourcesRequired | |
| 75 | |
| 76 final _SVGAnimatedBooleanJs externalResourcesRequired; | |
| 77 | |
| 78 // From SVGStylable | |
| 79 | |
| 80 final _SVGAnimatedStringJs className; | |
| 81 | |
| 82 // Use implementation from Element. | |
| 83 // final _CSSStyleDeclarationJs style; | |
| 84 | |
| 85 _CSSValueJs getPresentationAttribute(String name) native; | |
| 86 | |
| 87 // From SVGTransformable | |
| 88 | |
| 89 final _SVGAnimatedTransformListJs transform; | |
| 90 | |
| 91 // From SVGLocatable | |
| 92 | |
| 93 final _SVGElementJs farthestViewportElement; | |
| 94 | |
| 95 final _SVGElementJs nearestViewportElement; | |
| 96 | |
| 97 _SVGRectJs getBBox() native; | |
| 98 | |
| 99 _SVGMatrixJs getCTM() native; | |
| 100 | |
| 101 _SVGMatrixJs getScreenCTM() native; | |
| 102 | |
| 103 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; | |
| 104 } | |
| OLD | NEW |