| Index: sdk/lib/svg/dartium/svg_dartium.dart
|
| diff --git a/sdk/lib/svg/dartium/svg_dartium.dart b/sdk/lib/svg/dartium/svg_dartium.dart
|
| index 713e9ab8f5c43072d3cba3111fd19fd36d338922..8f439bf01e818732c402919aebe9dcd2bf35b53c 100644
|
| --- a/sdk/lib/svg/dartium/svg_dartium.dart
|
| +++ b/sdk/lib/svg/dartium/svg_dartium.dart
|
| @@ -226,11 +226,11 @@ class Angle extends NativeFieldWrapperClass1 {
|
|
|
| @DomName('SVGAngle.value')
|
| @DocsEditable
|
| - num get value native "SVGAngle_value_Getter";
|
| + double get value native "SVGAngle_value_Getter";
|
|
|
| @DomName('SVGAngle.value')
|
| @DocsEditable
|
| - void set value(num value) native "SVGAngle_value_Setter";
|
| + void set value(double value) native "SVGAngle_value_Setter";
|
|
|
| @DomName('SVGAngle.valueAsString')
|
| @DocsEditable
|
| @@ -242,11 +242,11 @@ class Angle extends NativeFieldWrapperClass1 {
|
|
|
| @DomName('SVGAngle.valueInSpecifiedUnits')
|
| @DocsEditable
|
| - num get valueInSpecifiedUnits native "SVGAngle_valueInSpecifiedUnits_Getter";
|
| + double get valueInSpecifiedUnits native "SVGAngle_valueInSpecifiedUnits_Getter";
|
|
|
| @DomName('SVGAngle.valueInSpecifiedUnits')
|
| @DocsEditable
|
| - void set valueInSpecifiedUnits(num value) native "SVGAngle_valueInSpecifiedUnits_Setter";
|
| + void set valueInSpecifiedUnits(double value) native "SVGAngle_valueInSpecifiedUnits_Setter";
|
|
|
| @DomName('SVGAngle.convertToSpecifiedUnits')
|
| @DocsEditable
|
| @@ -254,7 +254,7 @@ class Angle extends NativeFieldWrapperClass1 {
|
|
|
| @DomName('SVGAngle.newValueSpecifiedUnits')
|
| @DocsEditable
|
| - void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) native "SVGAngle_newValueSpecifiedUnits_Callback";
|
| + void newValueSpecifiedUnits(int unitType, double valueInSpecifiedUnits) native "SVGAngle_newValueSpecifiedUnits_Callback";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -488,15 +488,15 @@ class AnimatedNumber extends NativeFieldWrapperClass1 {
|
|
|
| @DomName('SVGAnimatedNumber.animVal')
|
| @DocsEditable
|
| - num get animVal native "SVGAnimatedNumber_animVal_Getter";
|
| + double get animVal native "SVGAnimatedNumber_animVal_Getter";
|
|
|
| @DomName('SVGAnimatedNumber.baseVal')
|
| @DocsEditable
|
| - num get baseVal native "SVGAnimatedNumber_baseVal_Getter";
|
| + double get baseVal native "SVGAnimatedNumber_baseVal_Getter";
|
|
|
| @DomName('SVGAnimatedNumber.baseVal')
|
| @DocsEditable
|
| - void set baseVal(num value) native "SVGAnimatedNumber_baseVal_Setter";
|
| + void set baseVal(double value) native "SVGAnimatedNumber_baseVal_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -636,15 +636,15 @@ class AnimationElement extends SvgElement implements Tests, ElementTimeControl,
|
|
|
| @DomName('SVGAnimationElement.getCurrentTime')
|
| @DocsEditable
|
| - num getCurrentTime() native "SVGAnimationElement_getCurrentTime_Callback";
|
| + double getCurrentTime() native "SVGAnimationElement_getCurrentTime_Callback";
|
|
|
| @DomName('SVGAnimationElement.getSimpleDuration')
|
| @DocsEditable
|
| - num getSimpleDuration() native "SVGAnimationElement_getSimpleDuration_Callback";
|
| + double getSimpleDuration() native "SVGAnimationElement_getSimpleDuration_Callback";
|
|
|
| @DomName('SVGAnimationElement.getStartTime')
|
| @DocsEditable
|
| - num getStartTime() native "SVGAnimationElement_getStartTime_Callback";
|
| + double getStartTime() native "SVGAnimationElement_getStartTime_Callback";
|
|
|
| @DomName('SVGAnimationElement.beginElement')
|
| @DocsEditable
|
| @@ -652,7 +652,7 @@ class AnimationElement extends SvgElement implements Tests, ElementTimeControl,
|
|
|
| @DomName('SVGAnimationElement.beginElementAt')
|
| @DocsEditable
|
| - void beginElementAt(num offset) native "SVGAnimationElement_beginElementAt_Callback";
|
| + void beginElementAt(double offset) native "SVGAnimationElement_beginElementAt_Callback";
|
|
|
| @DomName('SVGAnimationElement.endElement')
|
| @DocsEditable
|
| @@ -660,7 +660,7 @@ class AnimationElement extends SvgElement implements Tests, ElementTimeControl,
|
|
|
| @DomName('SVGAnimationElement.endElementAt')
|
| @DocsEditable
|
| - void endElementAt(num offset) native "SVGAnimationElement_endElementAt_Callback";
|
| + void endElementAt(double offset) native "SVGAnimationElement_endElementAt_Callback";
|
|
|
| @DomName('SVGAnimationElement.externalResourcesRequired')
|
| @DocsEditable
|
| @@ -1368,7 +1368,7 @@ class ElementTimeControl extends NativeFieldWrapperClass1 {
|
|
|
| @DomName('ElementTimeControl.beginElementAt')
|
| @DocsEditable
|
| - void beginElementAt(num offset) native "ElementTimeControl_beginElementAt_Callback";
|
| + void beginElementAt(double offset) native "ElementTimeControl_beginElementAt_Callback";
|
|
|
| @DomName('ElementTimeControl.endElement')
|
| @DocsEditable
|
| @@ -1376,7 +1376,7 @@ class ElementTimeControl extends NativeFieldWrapperClass1 {
|
|
|
| @DomName('ElementTimeControl.endElementAt')
|
| @DocsEditable
|
| - void endElementAt(num offset) native "ElementTimeControl_endElementAt_Callback";
|
| + void endElementAt(double offset) native "ElementTimeControl_endElementAt_Callback";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -2270,7 +2270,7 @@ class FEGaussianBlurElement extends StyledElement implements FilterPrimitiveStan
|
|
|
| @DomName('SVGFEGaussianBlurElement.setStdDeviation')
|
| @DocsEditable
|
| - void setStdDeviation(num stdDeviationX, num stdDeviationY) native "SVGFEGaussianBlurElement_setStdDeviation_Callback";
|
| + void setStdDeviation(double stdDeviationX, double stdDeviationY) native "SVGFEGaussianBlurElement_setStdDeviation_Callback";
|
|
|
| @DomName('SVGFEGaussianBlurElement.height')
|
| @DocsEditable
|
| @@ -2487,7 +2487,7 @@ class FEMorphologyElement extends StyledElement implements FilterPrimitiveStanda
|
|
|
| @DomName('SVGFEMorphologyElement.setRadius')
|
| @DocsEditable
|
| - void setRadius(num radiusX, num radiusY) native "SVGFEMorphologyElement_setRadius_Callback";
|
| + void setRadius(double radiusX, double radiusY) native "SVGFEMorphologyElement_setRadius_Callback";
|
|
|
| @DomName('SVGFEMorphologyElement.height')
|
| @DocsEditable
|
| @@ -3393,11 +3393,11 @@ class Length extends NativeFieldWrapperClass1 {
|
|
|
| @DomName('SVGLength.value')
|
| @DocsEditable
|
| - num get value native "SVGLength_value_Getter";
|
| + double get value native "SVGLength_value_Getter";
|
|
|
| @DomName('SVGLength.value')
|
| @DocsEditable
|
| - void set value(num value) native "SVGLength_value_Setter";
|
| + void set value(double value) native "SVGLength_value_Setter";
|
|
|
| @DomName('SVGLength.valueAsString')
|
| @DocsEditable
|
| @@ -3409,11 +3409,11 @@ class Length extends NativeFieldWrapperClass1 {
|
|
|
| @DomName('SVGLength.valueInSpecifiedUnits')
|
| @DocsEditable
|
| - num get valueInSpecifiedUnits native "SVGLength_valueInSpecifiedUnits_Getter";
|
| + double get valueInSpecifiedUnits native "SVGLength_valueInSpecifiedUnits_Getter";
|
|
|
| @DomName('SVGLength.valueInSpecifiedUnits')
|
| @DocsEditable
|
| - void set valueInSpecifiedUnits(num value) native "SVGLength_valueInSpecifiedUnits_Setter";
|
| + void set valueInSpecifiedUnits(double value) native "SVGLength_valueInSpecifiedUnits_Setter";
|
|
|
| @DomName('SVGLength.convertToSpecifiedUnits')
|
| @DocsEditable
|
| @@ -3421,7 +3421,7 @@ class Length extends NativeFieldWrapperClass1 {
|
|
|
| @DomName('SVGLength.newValueSpecifiedUnits')
|
| @DocsEditable
|
| - void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) native "SVGLength_newValueSpecifiedUnits_Callback";
|
| + void newValueSpecifiedUnits(int unitType, double valueInSpecifiedUnits) native "SVGLength_newValueSpecifiedUnits_Callback";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -3886,51 +3886,51 @@ class Matrix extends NativeFieldWrapperClass1 {
|
|
|
| @DomName('SVGMatrix.a')
|
| @DocsEditable
|
| - num get a native "SVGMatrix_a_Getter";
|
| + double get a native "SVGMatrix_a_Getter";
|
|
|
| @DomName('SVGMatrix.a')
|
| @DocsEditable
|
| - void set a(num value) native "SVGMatrix_a_Setter";
|
| + void set a(double value) native "SVGMatrix_a_Setter";
|
|
|
| @DomName('SVGMatrix.b')
|
| @DocsEditable
|
| - num get b native "SVGMatrix_b_Getter";
|
| + double get b native "SVGMatrix_b_Getter";
|
|
|
| @DomName('SVGMatrix.b')
|
| @DocsEditable
|
| - void set b(num value) native "SVGMatrix_b_Setter";
|
| + void set b(double value) native "SVGMatrix_b_Setter";
|
|
|
| @DomName('SVGMatrix.c')
|
| @DocsEditable
|
| - num get c native "SVGMatrix_c_Getter";
|
| + double get c native "SVGMatrix_c_Getter";
|
|
|
| @DomName('SVGMatrix.c')
|
| @DocsEditable
|
| - void set c(num value) native "SVGMatrix_c_Setter";
|
| + void set c(double value) native "SVGMatrix_c_Setter";
|
|
|
| @DomName('SVGMatrix.d')
|
| @DocsEditable
|
| - num get d native "SVGMatrix_d_Getter";
|
| + double get d native "SVGMatrix_d_Getter";
|
|
|
| @DomName('SVGMatrix.d')
|
| @DocsEditable
|
| - void set d(num value) native "SVGMatrix_d_Setter";
|
| + void set d(double value) native "SVGMatrix_d_Setter";
|
|
|
| @DomName('SVGMatrix.e')
|
| @DocsEditable
|
| - num get e native "SVGMatrix_e_Getter";
|
| + double get e native "SVGMatrix_e_Getter";
|
|
|
| @DomName('SVGMatrix.e')
|
| @DocsEditable
|
| - void set e(num value) native "SVGMatrix_e_Setter";
|
| + void set e(double value) native "SVGMatrix_e_Setter";
|
|
|
| @DomName('SVGMatrix.f')
|
| @DocsEditable
|
| - num get f native "SVGMatrix_f_Getter";
|
| + double get f native "SVGMatrix_f_Getter";
|
|
|
| @DomName('SVGMatrix.f')
|
| @DocsEditable
|
| - void set f(num value) native "SVGMatrix_f_Setter";
|
| + void set f(double value) native "SVGMatrix_f_Setter";
|
|
|
| @DomName('SVGMatrix.flipX')
|
| @DocsEditable
|
| @@ -3950,31 +3950,31 @@ class Matrix extends NativeFieldWrapperClass1 {
|
|
|
| @DomName('SVGMatrix.rotate')
|
| @DocsEditable
|
| - Matrix rotate(num angle) native "SVGMatrix_rotate_Callback";
|
| + Matrix rotate(double angle) native "SVGMatrix_rotate_Callback";
|
|
|
| @DomName('SVGMatrix.rotateFromVector')
|
| @DocsEditable
|
| - Matrix rotateFromVector(num x, num y) native "SVGMatrix_rotateFromVector_Callback";
|
| + Matrix rotateFromVector(double x, double y) native "SVGMatrix_rotateFromVector_Callback";
|
|
|
| @DomName('SVGMatrix.scale')
|
| @DocsEditable
|
| - Matrix scale(num scaleFactor) native "SVGMatrix_scale_Callback";
|
| + Matrix scale(double scaleFactor) native "SVGMatrix_scale_Callback";
|
|
|
| @DomName('SVGMatrix.scaleNonUniform')
|
| @DocsEditable
|
| - Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) native "SVGMatrix_scaleNonUniform_Callback";
|
| + Matrix scaleNonUniform(double scaleFactorX, double scaleFactorY) native "SVGMatrix_scaleNonUniform_Callback";
|
|
|
| @DomName('SVGMatrix.skewX')
|
| @DocsEditable
|
| - Matrix skewX(num angle) native "SVGMatrix_skewX_Callback";
|
| + Matrix skewX(double angle) native "SVGMatrix_skewX_Callback";
|
|
|
| @DomName('SVGMatrix.skewY')
|
| @DocsEditable
|
| - Matrix skewY(num angle) native "SVGMatrix_skewY_Callback";
|
| + Matrix skewY(double angle) native "SVGMatrix_skewY_Callback";
|
|
|
| @DomName('SVGMatrix.translate')
|
| @DocsEditable
|
| - Matrix translate(num x, num y) native "SVGMatrix_translate_Callback";
|
| + Matrix translate(double x, double y) native "SVGMatrix_translate_Callback";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4006,11 +4006,11 @@ class Number extends NativeFieldWrapperClass1 {
|
|
|
| @DomName('SVGNumber.value')
|
| @DocsEditable
|
| - num get value native "SVGNumber_value_Getter";
|
| + double get value native "SVGNumber_value_Getter";
|
|
|
| @DomName('SVGNumber.value')
|
| @DocsEditable
|
| - void set value(num value) native "SVGNumber_value_Setter";
|
| + void set value(double value) native "SVGNumber_value_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4145,11 +4145,11 @@ class PathElement extends StyledElement implements Transformable, Tests, Externa
|
|
|
| @DomName('SVGPathElement.createSVGPathSegArcAbs')
|
| @DocsEditable
|
| - PathSegArcAbs createSvgPathSegArcAbs(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) native "SVGPathElement_createSVGPathSegArcAbs_Callback";
|
| + PathSegArcAbs createSvgPathSegArcAbs(double x, double y, double r1, double r2, double angle, bool largeArcFlag, bool sweepFlag) native "SVGPathElement_createSVGPathSegArcAbs_Callback";
|
|
|
| @DomName('SVGPathElement.createSVGPathSegArcRel')
|
| @DocsEditable
|
| - PathSegArcRel createSvgPathSegArcRel(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) native "SVGPathElement_createSVGPathSegArcRel_Callback";
|
| + PathSegArcRel createSvgPathSegArcRel(double x, double y, double r1, double r2, double angle, bool largeArcFlag, bool sweepFlag) native "SVGPathElement_createSVGPathSegArcRel_Callback";
|
|
|
| @DomName('SVGPathElement.createSVGPathSegClosePath')
|
| @DocsEditable
|
| @@ -4157,79 +4157,79 @@ class PathElement extends StyledElement implements Transformable, Tests, Externa
|
|
|
| @DomName('SVGPathElement.createSVGPathSegCurvetoCubicAbs')
|
| @DocsEditable
|
| - PathSegCurvetoCubicAbs createSvgPathSegCurvetoCubicAbs(num x, num y, num x1, num y1, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicAbs_Callback";
|
| + PathSegCurvetoCubicAbs createSvgPathSegCurvetoCubicAbs(double x, double y, double x1, double y1, double x2, double y2) native "SVGPathElement_createSVGPathSegCurvetoCubicAbs_Callback";
|
|
|
| @DomName('SVGPathElement.createSVGPathSegCurvetoCubicRel')
|
| @DocsEditable
|
| - PathSegCurvetoCubicRel createSvgPathSegCurvetoCubicRel(num x, num y, num x1, num y1, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicRel_Callback";
|
| + PathSegCurvetoCubicRel createSvgPathSegCurvetoCubicRel(double x, double y, double x1, double y1, double x2, double y2) native "SVGPathElement_createSVGPathSegCurvetoCubicRel_Callback";
|
|
|
| @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs')
|
| @DocsEditable
|
| - PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(num x, num y, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicSmoothAbs_Callback";
|
| + PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(double x, double y, double x2, double y2) native "SVGPathElement_createSVGPathSegCurvetoCubicSmoothAbs_Callback";
|
|
|
| @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel')
|
| @DocsEditable
|
| - PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(num x, num y, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicSmoothRel_Callback";
|
| + PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(double x, double y, double x2, double y2) native "SVGPathElement_createSVGPathSegCurvetoCubicSmoothRel_Callback";
|
|
|
| @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticAbs')
|
| @DocsEditable
|
| - PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(num x, num y, num x1, num y1) native "SVGPathElement_createSVGPathSegCurvetoQuadraticAbs_Callback";
|
| + PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(double x, double y, double x1, double y1) native "SVGPathElement_createSVGPathSegCurvetoQuadraticAbs_Callback";
|
|
|
| @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticRel')
|
| @DocsEditable
|
| - PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(num x, num y, num x1, num y1) native "SVGPathElement_createSVGPathSegCurvetoQuadraticRel_Callback";
|
| + PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(double x, double y, double x1, double y1) native "SVGPathElement_createSVGPathSegCurvetoQuadraticRel_Callback";
|
|
|
| @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs')
|
| @DocsEditable
|
| - PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(num x, num y) native "SVGPathElement_createSVGPathSegCurvetoQuadraticSmoothAbs_Callback";
|
| + PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(double x, double y) native "SVGPathElement_createSVGPathSegCurvetoQuadraticSmoothAbs_Callback";
|
|
|
| @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel')
|
| @DocsEditable
|
| - PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(num x, num y) native "SVGPathElement_createSVGPathSegCurvetoQuadraticSmoothRel_Callback";
|
| + PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(double x, double y) native "SVGPathElement_createSVGPathSegCurvetoQuadraticSmoothRel_Callback";
|
|
|
| @DomName('SVGPathElement.createSVGPathSegLinetoAbs')
|
| @DocsEditable
|
| - PathSegLinetoAbs createSvgPathSegLinetoAbs(num x, num y) native "SVGPathElement_createSVGPathSegLinetoAbs_Callback";
|
| + PathSegLinetoAbs createSvgPathSegLinetoAbs(double x, double y) native "SVGPathElement_createSVGPathSegLinetoAbs_Callback";
|
|
|
| @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalAbs')
|
| @DocsEditable
|
| - PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(num x) native "SVGPathElement_createSVGPathSegLinetoHorizontalAbs_Callback";
|
| + PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(double x) native "SVGPathElement_createSVGPathSegLinetoHorizontalAbs_Callback";
|
|
|
| @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalRel')
|
| @DocsEditable
|
| - PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(num x) native "SVGPathElement_createSVGPathSegLinetoHorizontalRel_Callback";
|
| + PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(double x) native "SVGPathElement_createSVGPathSegLinetoHorizontalRel_Callback";
|
|
|
| @DomName('SVGPathElement.createSVGPathSegLinetoRel')
|
| @DocsEditable
|
| - PathSegLinetoRel createSvgPathSegLinetoRel(num x, num y) native "SVGPathElement_createSVGPathSegLinetoRel_Callback";
|
| + PathSegLinetoRel createSvgPathSegLinetoRel(double x, double y) native "SVGPathElement_createSVGPathSegLinetoRel_Callback";
|
|
|
| @DomName('SVGPathElement.createSVGPathSegLinetoVerticalAbs')
|
| @DocsEditable
|
| - PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(num y) native "SVGPathElement_createSVGPathSegLinetoVerticalAbs_Callback";
|
| + PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(double y) native "SVGPathElement_createSVGPathSegLinetoVerticalAbs_Callback";
|
|
|
| @DomName('SVGPathElement.createSVGPathSegLinetoVerticalRel')
|
| @DocsEditable
|
| - PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(num y) native "SVGPathElement_createSVGPathSegLinetoVerticalRel_Callback";
|
| + PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(double y) native "SVGPathElement_createSVGPathSegLinetoVerticalRel_Callback";
|
|
|
| @DomName('SVGPathElement.createSVGPathSegMovetoAbs')
|
| @DocsEditable
|
| - PathSegMovetoAbs createSvgPathSegMovetoAbs(num x, num y) native "SVGPathElement_createSVGPathSegMovetoAbs_Callback";
|
| + PathSegMovetoAbs createSvgPathSegMovetoAbs(double x, double y) native "SVGPathElement_createSVGPathSegMovetoAbs_Callback";
|
|
|
| @DomName('SVGPathElement.createSVGPathSegMovetoRel')
|
| @DocsEditable
|
| - PathSegMovetoRel createSvgPathSegMovetoRel(num x, num y) native "SVGPathElement_createSVGPathSegMovetoRel_Callback";
|
| + PathSegMovetoRel createSvgPathSegMovetoRel(double x, double y) native "SVGPathElement_createSVGPathSegMovetoRel_Callback";
|
|
|
| @DomName('SVGPathElement.getPathSegAtLength')
|
| @DocsEditable
|
| - int getPathSegAtLength(num distance) native "SVGPathElement_getPathSegAtLength_Callback";
|
| + int getPathSegAtLength(double distance) native "SVGPathElement_getPathSegAtLength_Callback";
|
|
|
| @DomName('SVGPathElement.getPointAtLength')
|
| @DocsEditable
|
| - Point getPointAtLength(num distance) native "SVGPathElement_getPointAtLength_Callback";
|
| + Point getPointAtLength(double distance) native "SVGPathElement_getPointAtLength_Callback";
|
|
|
| @DomName('SVGPathElement.getTotalLength')
|
| @DocsEditable
|
| - num getTotalLength() native "SVGPathElement_getTotalLength_Callback";
|
| + double getTotalLength() native "SVGPathElement_getTotalLength_Callback";
|
|
|
| @DomName('SVGPathElement.externalResourcesRequired')
|
| @DocsEditable
|
| @@ -4413,11 +4413,11 @@ class PathSegArcAbs extends PathSeg {
|
|
|
| @DomName('SVGPathSegArcAbs.angle')
|
| @DocsEditable
|
| - num get angle native "SVGPathSegArcAbs_angle_Getter";
|
| + double get angle native "SVGPathSegArcAbs_angle_Getter";
|
|
|
| @DomName('SVGPathSegArcAbs.angle')
|
| @DocsEditable
|
| - void set angle(num value) native "SVGPathSegArcAbs_angle_Setter";
|
| + void set angle(double value) native "SVGPathSegArcAbs_angle_Setter";
|
|
|
| @DomName('SVGPathSegArcAbs.largeArcFlag')
|
| @DocsEditable
|
| @@ -4429,19 +4429,19 @@ class PathSegArcAbs extends PathSeg {
|
|
|
| @DomName('SVGPathSegArcAbs.r1')
|
| @DocsEditable
|
| - num get r1 native "SVGPathSegArcAbs_r1_Getter";
|
| + double get r1 native "SVGPathSegArcAbs_r1_Getter";
|
|
|
| @DomName('SVGPathSegArcAbs.r1')
|
| @DocsEditable
|
| - void set r1(num value) native "SVGPathSegArcAbs_r1_Setter";
|
| + void set r1(double value) native "SVGPathSegArcAbs_r1_Setter";
|
|
|
| @DomName('SVGPathSegArcAbs.r2')
|
| @DocsEditable
|
| - num get r2 native "SVGPathSegArcAbs_r2_Getter";
|
| + double get r2 native "SVGPathSegArcAbs_r2_Getter";
|
|
|
| @DomName('SVGPathSegArcAbs.r2')
|
| @DocsEditable
|
| - void set r2(num value) native "SVGPathSegArcAbs_r2_Setter";
|
| + void set r2(double value) native "SVGPathSegArcAbs_r2_Setter";
|
|
|
| @DomName('SVGPathSegArcAbs.sweepFlag')
|
| @DocsEditable
|
| @@ -4453,19 +4453,19 @@ class PathSegArcAbs extends PathSeg {
|
|
|
| @DomName('SVGPathSegArcAbs.x')
|
| @DocsEditable
|
| - num get x native "SVGPathSegArcAbs_x_Getter";
|
| + double get x native "SVGPathSegArcAbs_x_Getter";
|
|
|
| @DomName('SVGPathSegArcAbs.x')
|
| @DocsEditable
|
| - void set x(num value) native "SVGPathSegArcAbs_x_Setter";
|
| + void set x(double value) native "SVGPathSegArcAbs_x_Setter";
|
|
|
| @DomName('SVGPathSegArcAbs.y')
|
| @DocsEditable
|
| - num get y native "SVGPathSegArcAbs_y_Getter";
|
| + double get y native "SVGPathSegArcAbs_y_Getter";
|
|
|
| @DomName('SVGPathSegArcAbs.y')
|
| @DocsEditable
|
| - void set y(num value) native "SVGPathSegArcAbs_y_Setter";
|
| + void set y(double value) native "SVGPathSegArcAbs_y_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4483,11 +4483,11 @@ class PathSegArcRel extends PathSeg {
|
|
|
| @DomName('SVGPathSegArcRel.angle')
|
| @DocsEditable
|
| - num get angle native "SVGPathSegArcRel_angle_Getter";
|
| + double get angle native "SVGPathSegArcRel_angle_Getter";
|
|
|
| @DomName('SVGPathSegArcRel.angle')
|
| @DocsEditable
|
| - void set angle(num value) native "SVGPathSegArcRel_angle_Setter";
|
| + void set angle(double value) native "SVGPathSegArcRel_angle_Setter";
|
|
|
| @DomName('SVGPathSegArcRel.largeArcFlag')
|
| @DocsEditable
|
| @@ -4499,19 +4499,19 @@ class PathSegArcRel extends PathSeg {
|
|
|
| @DomName('SVGPathSegArcRel.r1')
|
| @DocsEditable
|
| - num get r1 native "SVGPathSegArcRel_r1_Getter";
|
| + double get r1 native "SVGPathSegArcRel_r1_Getter";
|
|
|
| @DomName('SVGPathSegArcRel.r1')
|
| @DocsEditable
|
| - void set r1(num value) native "SVGPathSegArcRel_r1_Setter";
|
| + void set r1(double value) native "SVGPathSegArcRel_r1_Setter";
|
|
|
| @DomName('SVGPathSegArcRel.r2')
|
| @DocsEditable
|
| - num get r2 native "SVGPathSegArcRel_r2_Getter";
|
| + double get r2 native "SVGPathSegArcRel_r2_Getter";
|
|
|
| @DomName('SVGPathSegArcRel.r2')
|
| @DocsEditable
|
| - void set r2(num value) native "SVGPathSegArcRel_r2_Setter";
|
| + void set r2(double value) native "SVGPathSegArcRel_r2_Setter";
|
|
|
| @DomName('SVGPathSegArcRel.sweepFlag')
|
| @DocsEditable
|
| @@ -4523,19 +4523,19 @@ class PathSegArcRel extends PathSeg {
|
|
|
| @DomName('SVGPathSegArcRel.x')
|
| @DocsEditable
|
| - num get x native "SVGPathSegArcRel_x_Getter";
|
| + double get x native "SVGPathSegArcRel_x_Getter";
|
|
|
| @DomName('SVGPathSegArcRel.x')
|
| @DocsEditable
|
| - void set x(num value) native "SVGPathSegArcRel_x_Setter";
|
| + void set x(double value) native "SVGPathSegArcRel_x_Setter";
|
|
|
| @DomName('SVGPathSegArcRel.y')
|
| @DocsEditable
|
| - num get y native "SVGPathSegArcRel_y_Getter";
|
| + double get y native "SVGPathSegArcRel_y_Getter";
|
|
|
| @DomName('SVGPathSegArcRel.y')
|
| @DocsEditable
|
| - void set y(num value) native "SVGPathSegArcRel_y_Setter";
|
| + void set y(double value) native "SVGPathSegArcRel_y_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4567,51 +4567,51 @@ class PathSegCurvetoCubicAbs extends PathSeg {
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.x')
|
| @DocsEditable
|
| - num get x native "SVGPathSegCurvetoCubicAbs_x_Getter";
|
| + double get x native "SVGPathSegCurvetoCubicAbs_x_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.x')
|
| @DocsEditable
|
| - void set x(num value) native "SVGPathSegCurvetoCubicAbs_x_Setter";
|
| + void set x(double value) native "SVGPathSegCurvetoCubicAbs_x_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.x1')
|
| @DocsEditable
|
| - num get x1 native "SVGPathSegCurvetoCubicAbs_x1_Getter";
|
| + double get x1 native "SVGPathSegCurvetoCubicAbs_x1_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.x1')
|
| @DocsEditable
|
| - void set x1(num value) native "SVGPathSegCurvetoCubicAbs_x1_Setter";
|
| + void set x1(double value) native "SVGPathSegCurvetoCubicAbs_x1_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.x2')
|
| @DocsEditable
|
| - num get x2 native "SVGPathSegCurvetoCubicAbs_x2_Getter";
|
| + double get x2 native "SVGPathSegCurvetoCubicAbs_x2_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.x2')
|
| @DocsEditable
|
| - void set x2(num value) native "SVGPathSegCurvetoCubicAbs_x2_Setter";
|
| + void set x2(double value) native "SVGPathSegCurvetoCubicAbs_x2_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.y')
|
| @DocsEditable
|
| - num get y native "SVGPathSegCurvetoCubicAbs_y_Getter";
|
| + double get y native "SVGPathSegCurvetoCubicAbs_y_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.y')
|
| @DocsEditable
|
| - void set y(num value) native "SVGPathSegCurvetoCubicAbs_y_Setter";
|
| + void set y(double value) native "SVGPathSegCurvetoCubicAbs_y_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.y1')
|
| @DocsEditable
|
| - num get y1 native "SVGPathSegCurvetoCubicAbs_y1_Getter";
|
| + double get y1 native "SVGPathSegCurvetoCubicAbs_y1_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.y1')
|
| @DocsEditable
|
| - void set y1(num value) native "SVGPathSegCurvetoCubicAbs_y1_Setter";
|
| + void set y1(double value) native "SVGPathSegCurvetoCubicAbs_y1_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.y2')
|
| @DocsEditable
|
| - num get y2 native "SVGPathSegCurvetoCubicAbs_y2_Getter";
|
| + double get y2 native "SVGPathSegCurvetoCubicAbs_y2_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.y2')
|
| @DocsEditable
|
| - void set y2(num value) native "SVGPathSegCurvetoCubicAbs_y2_Setter";
|
| + void set y2(double value) native "SVGPathSegCurvetoCubicAbs_y2_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4629,51 +4629,51 @@ class PathSegCurvetoCubicRel extends PathSeg {
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.x')
|
| @DocsEditable
|
| - num get x native "SVGPathSegCurvetoCubicRel_x_Getter";
|
| + double get x native "SVGPathSegCurvetoCubicRel_x_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.x')
|
| @DocsEditable
|
| - void set x(num value) native "SVGPathSegCurvetoCubicRel_x_Setter";
|
| + void set x(double value) native "SVGPathSegCurvetoCubicRel_x_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.x1')
|
| @DocsEditable
|
| - num get x1 native "SVGPathSegCurvetoCubicRel_x1_Getter";
|
| + double get x1 native "SVGPathSegCurvetoCubicRel_x1_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.x1')
|
| @DocsEditable
|
| - void set x1(num value) native "SVGPathSegCurvetoCubicRel_x1_Setter";
|
| + void set x1(double value) native "SVGPathSegCurvetoCubicRel_x1_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.x2')
|
| @DocsEditable
|
| - num get x2 native "SVGPathSegCurvetoCubicRel_x2_Getter";
|
| + double get x2 native "SVGPathSegCurvetoCubicRel_x2_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.x2')
|
| @DocsEditable
|
| - void set x2(num value) native "SVGPathSegCurvetoCubicRel_x2_Setter";
|
| + void set x2(double value) native "SVGPathSegCurvetoCubicRel_x2_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.y')
|
| @DocsEditable
|
| - num get y native "SVGPathSegCurvetoCubicRel_y_Getter";
|
| + double get y native "SVGPathSegCurvetoCubicRel_y_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.y')
|
| @DocsEditable
|
| - void set y(num value) native "SVGPathSegCurvetoCubicRel_y_Setter";
|
| + void set y(double value) native "SVGPathSegCurvetoCubicRel_y_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.y1')
|
| @DocsEditable
|
| - num get y1 native "SVGPathSegCurvetoCubicRel_y1_Getter";
|
| + double get y1 native "SVGPathSegCurvetoCubicRel_y1_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.y1')
|
| @DocsEditable
|
| - void set y1(num value) native "SVGPathSegCurvetoCubicRel_y1_Setter";
|
| + void set y1(double value) native "SVGPathSegCurvetoCubicRel_y1_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.y2')
|
| @DocsEditable
|
| - num get y2 native "SVGPathSegCurvetoCubicRel_y2_Getter";
|
| + double get y2 native "SVGPathSegCurvetoCubicRel_y2_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.y2')
|
| @DocsEditable
|
| - void set y2(num value) native "SVGPathSegCurvetoCubicRel_y2_Setter";
|
| + void set y2(double value) native "SVGPathSegCurvetoCubicRel_y2_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4691,35 +4691,35 @@ class PathSegCurvetoCubicSmoothAbs extends PathSeg {
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothAbs.x')
|
| @DocsEditable
|
| - num get x native "SVGPathSegCurvetoCubicSmoothAbs_x_Getter";
|
| + double get x native "SVGPathSegCurvetoCubicSmoothAbs_x_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothAbs.x')
|
| @DocsEditable
|
| - void set x(num value) native "SVGPathSegCurvetoCubicSmoothAbs_x_Setter";
|
| + void set x(double value) native "SVGPathSegCurvetoCubicSmoothAbs_x_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2')
|
| @DocsEditable
|
| - num get x2 native "SVGPathSegCurvetoCubicSmoothAbs_x2_Getter";
|
| + double get x2 native "SVGPathSegCurvetoCubicSmoothAbs_x2_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2')
|
| @DocsEditable
|
| - void set x2(num value) native "SVGPathSegCurvetoCubicSmoothAbs_x2_Setter";
|
| + void set x2(double value) native "SVGPathSegCurvetoCubicSmoothAbs_x2_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothAbs.y')
|
| @DocsEditable
|
| - num get y native "SVGPathSegCurvetoCubicSmoothAbs_y_Getter";
|
| + double get y native "SVGPathSegCurvetoCubicSmoothAbs_y_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothAbs.y')
|
| @DocsEditable
|
| - void set y(num value) native "SVGPathSegCurvetoCubicSmoothAbs_y_Setter";
|
| + void set y(double value) native "SVGPathSegCurvetoCubicSmoothAbs_y_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2')
|
| @DocsEditable
|
| - num get y2 native "SVGPathSegCurvetoCubicSmoothAbs_y2_Getter";
|
| + double get y2 native "SVGPathSegCurvetoCubicSmoothAbs_y2_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2')
|
| @DocsEditable
|
| - void set y2(num value) native "SVGPathSegCurvetoCubicSmoothAbs_y2_Setter";
|
| + void set y2(double value) native "SVGPathSegCurvetoCubicSmoothAbs_y2_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4737,35 +4737,35 @@ class PathSegCurvetoCubicSmoothRel extends PathSeg {
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothRel.x')
|
| @DocsEditable
|
| - num get x native "SVGPathSegCurvetoCubicSmoothRel_x_Getter";
|
| + double get x native "SVGPathSegCurvetoCubicSmoothRel_x_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothRel.x')
|
| @DocsEditable
|
| - void set x(num value) native "SVGPathSegCurvetoCubicSmoothRel_x_Setter";
|
| + void set x(double value) native "SVGPathSegCurvetoCubicSmoothRel_x_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothRel.x2')
|
| @DocsEditable
|
| - num get x2 native "SVGPathSegCurvetoCubicSmoothRel_x2_Getter";
|
| + double get x2 native "SVGPathSegCurvetoCubicSmoothRel_x2_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothRel.x2')
|
| @DocsEditable
|
| - void set x2(num value) native "SVGPathSegCurvetoCubicSmoothRel_x2_Setter";
|
| + void set x2(double value) native "SVGPathSegCurvetoCubicSmoothRel_x2_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothRel.y')
|
| @DocsEditable
|
| - num get y native "SVGPathSegCurvetoCubicSmoothRel_y_Getter";
|
| + double get y native "SVGPathSegCurvetoCubicSmoothRel_y_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothRel.y')
|
| @DocsEditable
|
| - void set y(num value) native "SVGPathSegCurvetoCubicSmoothRel_y_Setter";
|
| + void set y(double value) native "SVGPathSegCurvetoCubicSmoothRel_y_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothRel.y2')
|
| @DocsEditable
|
| - num get y2 native "SVGPathSegCurvetoCubicSmoothRel_y2_Getter";
|
| + double get y2 native "SVGPathSegCurvetoCubicSmoothRel_y2_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothRel.y2')
|
| @DocsEditable
|
| - void set y2(num value) native "SVGPathSegCurvetoCubicSmoothRel_y2_Setter";
|
| + void set y2(double value) native "SVGPathSegCurvetoCubicSmoothRel_y2_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4783,35 +4783,35 @@ class PathSegCurvetoQuadraticAbs extends PathSeg {
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticAbs.x')
|
| @DocsEditable
|
| - num get x native "SVGPathSegCurvetoQuadraticAbs_x_Getter";
|
| + double get x native "SVGPathSegCurvetoQuadraticAbs_x_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticAbs.x')
|
| @DocsEditable
|
| - void set x(num value) native "SVGPathSegCurvetoQuadraticAbs_x_Setter";
|
| + void set x(double value) native "SVGPathSegCurvetoQuadraticAbs_x_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticAbs.x1')
|
| @DocsEditable
|
| - num get x1 native "SVGPathSegCurvetoQuadraticAbs_x1_Getter";
|
| + double get x1 native "SVGPathSegCurvetoQuadraticAbs_x1_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticAbs.x1')
|
| @DocsEditable
|
| - void set x1(num value) native "SVGPathSegCurvetoQuadraticAbs_x1_Setter";
|
| + void set x1(double value) native "SVGPathSegCurvetoQuadraticAbs_x1_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticAbs.y')
|
| @DocsEditable
|
| - num get y native "SVGPathSegCurvetoQuadraticAbs_y_Getter";
|
| + double get y native "SVGPathSegCurvetoQuadraticAbs_y_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticAbs.y')
|
| @DocsEditable
|
| - void set y(num value) native "SVGPathSegCurvetoQuadraticAbs_y_Setter";
|
| + void set y(double value) native "SVGPathSegCurvetoQuadraticAbs_y_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticAbs.y1')
|
| @DocsEditable
|
| - num get y1 native "SVGPathSegCurvetoQuadraticAbs_y1_Getter";
|
| + double get y1 native "SVGPathSegCurvetoQuadraticAbs_y1_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticAbs.y1')
|
| @DocsEditable
|
| - void set y1(num value) native "SVGPathSegCurvetoQuadraticAbs_y1_Setter";
|
| + void set y1(double value) native "SVGPathSegCurvetoQuadraticAbs_y1_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4829,35 +4829,35 @@ class PathSegCurvetoQuadraticRel extends PathSeg {
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticRel.x')
|
| @DocsEditable
|
| - num get x native "SVGPathSegCurvetoQuadraticRel_x_Getter";
|
| + double get x native "SVGPathSegCurvetoQuadraticRel_x_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticRel.x')
|
| @DocsEditable
|
| - void set x(num value) native "SVGPathSegCurvetoQuadraticRel_x_Setter";
|
| + void set x(double value) native "SVGPathSegCurvetoQuadraticRel_x_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticRel.x1')
|
| @DocsEditable
|
| - num get x1 native "SVGPathSegCurvetoQuadraticRel_x1_Getter";
|
| + double get x1 native "SVGPathSegCurvetoQuadraticRel_x1_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticRel.x1')
|
| @DocsEditable
|
| - void set x1(num value) native "SVGPathSegCurvetoQuadraticRel_x1_Setter";
|
| + void set x1(double value) native "SVGPathSegCurvetoQuadraticRel_x1_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticRel.y')
|
| @DocsEditable
|
| - num get y native "SVGPathSegCurvetoQuadraticRel_y_Getter";
|
| + double get y native "SVGPathSegCurvetoQuadraticRel_y_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticRel.y')
|
| @DocsEditable
|
| - void set y(num value) native "SVGPathSegCurvetoQuadraticRel_y_Setter";
|
| + void set y(double value) native "SVGPathSegCurvetoQuadraticRel_y_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticRel.y1')
|
| @DocsEditable
|
| - num get y1 native "SVGPathSegCurvetoQuadraticRel_y1_Getter";
|
| + double get y1 native "SVGPathSegCurvetoQuadraticRel_y1_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticRel.y1')
|
| @DocsEditable
|
| - void set y1(num value) native "SVGPathSegCurvetoQuadraticRel_y1_Setter";
|
| + void set y1(double value) native "SVGPathSegCurvetoQuadraticRel_y1_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4875,19 +4875,19 @@ class PathSegCurvetoQuadraticSmoothAbs extends PathSeg {
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x')
|
| @DocsEditable
|
| - num get x native "SVGPathSegCurvetoQuadraticSmoothAbs_x_Getter";
|
| + double get x native "SVGPathSegCurvetoQuadraticSmoothAbs_x_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x')
|
| @DocsEditable
|
| - void set x(num value) native "SVGPathSegCurvetoQuadraticSmoothAbs_x_Setter";
|
| + void set x(double value) native "SVGPathSegCurvetoQuadraticSmoothAbs_x_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y')
|
| @DocsEditable
|
| - num get y native "SVGPathSegCurvetoQuadraticSmoothAbs_y_Getter";
|
| + double get y native "SVGPathSegCurvetoQuadraticSmoothAbs_y_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y')
|
| @DocsEditable
|
| - void set y(num value) native "SVGPathSegCurvetoQuadraticSmoothAbs_y_Setter";
|
| + void set y(double value) native "SVGPathSegCurvetoQuadraticSmoothAbs_y_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4905,19 +4905,19 @@ class PathSegCurvetoQuadraticSmoothRel extends PathSeg {
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x')
|
| @DocsEditable
|
| - num get x native "SVGPathSegCurvetoQuadraticSmoothRel_x_Getter";
|
| + double get x native "SVGPathSegCurvetoQuadraticSmoothRel_x_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x')
|
| @DocsEditable
|
| - void set x(num value) native "SVGPathSegCurvetoQuadraticSmoothRel_x_Setter";
|
| + void set x(double value) native "SVGPathSegCurvetoQuadraticSmoothRel_x_Setter";
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y')
|
| @DocsEditable
|
| - num get y native "SVGPathSegCurvetoQuadraticSmoothRel_y_Getter";
|
| + double get y native "SVGPathSegCurvetoQuadraticSmoothRel_y_Getter";
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y')
|
| @DocsEditable
|
| - void set y(num value) native "SVGPathSegCurvetoQuadraticSmoothRel_y_Setter";
|
| + void set y(double value) native "SVGPathSegCurvetoQuadraticSmoothRel_y_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4935,19 +4935,19 @@ class PathSegLinetoAbs extends PathSeg {
|
|
|
| @DomName('SVGPathSegLinetoAbs.x')
|
| @DocsEditable
|
| - num get x native "SVGPathSegLinetoAbs_x_Getter";
|
| + double get x native "SVGPathSegLinetoAbs_x_Getter";
|
|
|
| @DomName('SVGPathSegLinetoAbs.x')
|
| @DocsEditable
|
| - void set x(num value) native "SVGPathSegLinetoAbs_x_Setter";
|
| + void set x(double value) native "SVGPathSegLinetoAbs_x_Setter";
|
|
|
| @DomName('SVGPathSegLinetoAbs.y')
|
| @DocsEditable
|
| - num get y native "SVGPathSegLinetoAbs_y_Getter";
|
| + double get y native "SVGPathSegLinetoAbs_y_Getter";
|
|
|
| @DomName('SVGPathSegLinetoAbs.y')
|
| @DocsEditable
|
| - void set y(num value) native "SVGPathSegLinetoAbs_y_Setter";
|
| + void set y(double value) native "SVGPathSegLinetoAbs_y_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4965,11 +4965,11 @@ class PathSegLinetoHorizontalAbs extends PathSeg {
|
|
|
| @DomName('SVGPathSegLinetoHorizontalAbs.x')
|
| @DocsEditable
|
| - num get x native "SVGPathSegLinetoHorizontalAbs_x_Getter";
|
| + double get x native "SVGPathSegLinetoHorizontalAbs_x_Getter";
|
|
|
| @DomName('SVGPathSegLinetoHorizontalAbs.x')
|
| @DocsEditable
|
| - void set x(num value) native "SVGPathSegLinetoHorizontalAbs_x_Setter";
|
| + void set x(double value) native "SVGPathSegLinetoHorizontalAbs_x_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4987,11 +4987,11 @@ class PathSegLinetoHorizontalRel extends PathSeg {
|
|
|
| @DomName('SVGPathSegLinetoHorizontalRel.x')
|
| @DocsEditable
|
| - num get x native "SVGPathSegLinetoHorizontalRel_x_Getter";
|
| + double get x native "SVGPathSegLinetoHorizontalRel_x_Getter";
|
|
|
| @DomName('SVGPathSegLinetoHorizontalRel.x')
|
| @DocsEditable
|
| - void set x(num value) native "SVGPathSegLinetoHorizontalRel_x_Setter";
|
| + void set x(double value) native "SVGPathSegLinetoHorizontalRel_x_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5009,19 +5009,19 @@ class PathSegLinetoRel extends PathSeg {
|
|
|
| @DomName('SVGPathSegLinetoRel.x')
|
| @DocsEditable
|
| - num get x native "SVGPathSegLinetoRel_x_Getter";
|
| + double get x native "SVGPathSegLinetoRel_x_Getter";
|
|
|
| @DomName('SVGPathSegLinetoRel.x')
|
| @DocsEditable
|
| - void set x(num value) native "SVGPathSegLinetoRel_x_Setter";
|
| + void set x(double value) native "SVGPathSegLinetoRel_x_Setter";
|
|
|
| @DomName('SVGPathSegLinetoRel.y')
|
| @DocsEditable
|
| - num get y native "SVGPathSegLinetoRel_y_Getter";
|
| + double get y native "SVGPathSegLinetoRel_y_Getter";
|
|
|
| @DomName('SVGPathSegLinetoRel.y')
|
| @DocsEditable
|
| - void set y(num value) native "SVGPathSegLinetoRel_y_Setter";
|
| + void set y(double value) native "SVGPathSegLinetoRel_y_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5039,11 +5039,11 @@ class PathSegLinetoVerticalAbs extends PathSeg {
|
|
|
| @DomName('SVGPathSegLinetoVerticalAbs.y')
|
| @DocsEditable
|
| - num get y native "SVGPathSegLinetoVerticalAbs_y_Getter";
|
| + double get y native "SVGPathSegLinetoVerticalAbs_y_Getter";
|
|
|
| @DomName('SVGPathSegLinetoVerticalAbs.y')
|
| @DocsEditable
|
| - void set y(num value) native "SVGPathSegLinetoVerticalAbs_y_Setter";
|
| + void set y(double value) native "SVGPathSegLinetoVerticalAbs_y_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5061,11 +5061,11 @@ class PathSegLinetoVerticalRel extends PathSeg {
|
|
|
| @DomName('SVGPathSegLinetoVerticalRel.y')
|
| @DocsEditable
|
| - num get y native "SVGPathSegLinetoVerticalRel_y_Getter";
|
| + double get y native "SVGPathSegLinetoVerticalRel_y_Getter";
|
|
|
| @DomName('SVGPathSegLinetoVerticalRel.y')
|
| @DocsEditable
|
| - void set y(num value) native "SVGPathSegLinetoVerticalRel_y_Setter";
|
| + void set y(double value) native "SVGPathSegLinetoVerticalRel_y_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5176,19 +5176,19 @@ class PathSegMovetoAbs extends PathSeg {
|
|
|
| @DomName('SVGPathSegMovetoAbs.x')
|
| @DocsEditable
|
| - num get x native "SVGPathSegMovetoAbs_x_Getter";
|
| + double get x native "SVGPathSegMovetoAbs_x_Getter";
|
|
|
| @DomName('SVGPathSegMovetoAbs.x')
|
| @DocsEditable
|
| - void set x(num value) native "SVGPathSegMovetoAbs_x_Setter";
|
| + void set x(double value) native "SVGPathSegMovetoAbs_x_Setter";
|
|
|
| @DomName('SVGPathSegMovetoAbs.y')
|
| @DocsEditable
|
| - num get y native "SVGPathSegMovetoAbs_y_Getter";
|
| + double get y native "SVGPathSegMovetoAbs_y_Getter";
|
|
|
| @DomName('SVGPathSegMovetoAbs.y')
|
| @DocsEditable
|
| - void set y(num value) native "SVGPathSegMovetoAbs_y_Setter";
|
| + void set y(double value) native "SVGPathSegMovetoAbs_y_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5206,19 +5206,19 @@ class PathSegMovetoRel extends PathSeg {
|
|
|
| @DomName('SVGPathSegMovetoRel.x')
|
| @DocsEditable
|
| - num get x native "SVGPathSegMovetoRel_x_Getter";
|
| + double get x native "SVGPathSegMovetoRel_x_Getter";
|
|
|
| @DomName('SVGPathSegMovetoRel.x')
|
| @DocsEditable
|
| - void set x(num value) native "SVGPathSegMovetoRel_x_Setter";
|
| + void set x(double value) native "SVGPathSegMovetoRel_x_Setter";
|
|
|
| @DomName('SVGPathSegMovetoRel.y')
|
| @DocsEditable
|
| - num get y native "SVGPathSegMovetoRel_y_Getter";
|
| + double get y native "SVGPathSegMovetoRel_y_Getter";
|
|
|
| @DomName('SVGPathSegMovetoRel.y')
|
| @DocsEditable
|
| - void set y(num value) native "SVGPathSegMovetoRel_y_Setter";
|
| + void set y(double value) native "SVGPathSegMovetoRel_y_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5330,19 +5330,19 @@ class Point extends NativeFieldWrapperClass1 {
|
|
|
| @DomName('SVGPoint.x')
|
| @DocsEditable
|
| - num get x native "SVGPoint_x_Getter";
|
| + double get x native "SVGPoint_x_Getter";
|
|
|
| @DomName('SVGPoint.x')
|
| @DocsEditable
|
| - void set x(num value) native "SVGPoint_x_Setter";
|
| + void set x(double value) native "SVGPoint_x_Setter";
|
|
|
| @DomName('SVGPoint.y')
|
| @DocsEditable
|
| - num get y native "SVGPoint_y_Getter";
|
| + double get y native "SVGPoint_y_Getter";
|
|
|
| @DomName('SVGPoint.y')
|
| @DocsEditable
|
| - void set y(num value) native "SVGPoint_y_Setter";
|
| + void set y(double value) native "SVGPoint_y_Setter";
|
|
|
| @DomName('SVGPoint.matrixTransform')
|
| @DocsEditable
|
| @@ -5718,35 +5718,35 @@ class Rect extends NativeFieldWrapperClass1 {
|
|
|
| @DomName('SVGRect.height')
|
| @DocsEditable
|
| - num get height native "SVGRect_height_Getter";
|
| + double get height native "SVGRect_height_Getter";
|
|
|
| @DomName('SVGRect.height')
|
| @DocsEditable
|
| - void set height(num value) native "SVGRect_height_Setter";
|
| + void set height(double value) native "SVGRect_height_Setter";
|
|
|
| @DomName('SVGRect.width')
|
| @DocsEditable
|
| - num get width native "SVGRect_width_Getter";
|
| + double get width native "SVGRect_width_Getter";
|
|
|
| @DomName('SVGRect.width')
|
| @DocsEditable
|
| - void set width(num value) native "SVGRect_width_Setter";
|
| + void set width(double value) native "SVGRect_width_Setter";
|
|
|
| @DomName('SVGRect.x')
|
| @DocsEditable
|
| - num get x native "SVGRect_x_Getter";
|
| + double get x native "SVGRect_x_Getter";
|
|
|
| @DomName('SVGRect.x')
|
| @DocsEditable
|
| - void set x(num value) native "SVGRect_x_Setter";
|
| + void set x(double value) native "SVGRect_x_Setter";
|
|
|
| @DomName('SVGRect.y')
|
| @DocsEditable
|
| - num get y native "SVGRect_y_Getter";
|
| + double get y native "SVGRect_y_Getter";
|
|
|
| @DomName('SVGRect.y')
|
| @DocsEditable
|
| - void set y(num value) native "SVGRect_y_Setter";
|
| + void set y(double value) native "SVGRect_y_Setter";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -6390,11 +6390,11 @@ class SvgSvgElement extends StyledElement implements FitToViewBox, Transformable
|
|
|
| @DomName('SVGSVGElement.currentScale')
|
| @DocsEditable
|
| - num get currentScale native "SVGSVGElement_currentScale_Getter";
|
| + double get currentScale native "SVGSVGElement_currentScale_Getter";
|
|
|
| @DomName('SVGSVGElement.currentScale')
|
| @DocsEditable
|
| - void set currentScale(num value) native "SVGSVGElement_currentScale_Setter";
|
| + void set currentScale(double value) native "SVGSVGElement_currentScale_Setter";
|
|
|
| @DomName('SVGSVGElement.currentTranslate')
|
| @DocsEditable
|
| @@ -6410,19 +6410,19 @@ class SvgSvgElement extends StyledElement implements FitToViewBox, Transformable
|
|
|
| @DomName('SVGSVGElement.pixelUnitToMillimeterX')
|
| @DocsEditable
|
| - num get pixelUnitToMillimeterX native "SVGSVGElement_pixelUnitToMillimeterX_Getter";
|
| + double get pixelUnitToMillimeterX native "SVGSVGElement_pixelUnitToMillimeterX_Getter";
|
|
|
| @DomName('SVGSVGElement.pixelUnitToMillimeterY')
|
| @DocsEditable
|
| - num get pixelUnitToMillimeterY native "SVGSVGElement_pixelUnitToMillimeterY_Getter";
|
| + double get pixelUnitToMillimeterY native "SVGSVGElement_pixelUnitToMillimeterY_Getter";
|
|
|
| @DomName('SVGSVGElement.screenPixelToMillimeterX')
|
| @DocsEditable
|
| - num get screenPixelToMillimeterX native "SVGSVGElement_screenPixelToMillimeterX_Getter";
|
| + double get screenPixelToMillimeterX native "SVGSVGElement_screenPixelToMillimeterX_Getter";
|
|
|
| @DomName('SVGSVGElement.screenPixelToMillimeterY')
|
| @DocsEditable
|
| - num get screenPixelToMillimeterY native "SVGSVGElement_screenPixelToMillimeterY_Getter";
|
| + double get screenPixelToMillimeterY native "SVGSVGElement_screenPixelToMillimeterY_Getter";
|
|
|
| @DomName('SVGSVGElement.useCurrentView')
|
| @DocsEditable
|
| @@ -6498,7 +6498,7 @@ class SvgSvgElement extends StyledElement implements FitToViewBox, Transformable
|
|
|
| @DomName('SVGSVGElement.getCurrentTime')
|
| @DocsEditable
|
| - num getCurrentTime() native "SVGSVGElement_getCurrentTime_Callback";
|
| + double getCurrentTime() native "SVGSVGElement_getCurrentTime_Callback";
|
|
|
| @DomName('SVGSVGElement.getElementById')
|
| @DocsEditable
|
| @@ -6518,7 +6518,7 @@ class SvgSvgElement extends StyledElement implements FitToViewBox, Transformable
|
|
|
| @DomName('SVGSVGElement.setCurrentTime')
|
| @DocsEditable
|
| - void setCurrentTime(num seconds) native "SVGSVGElement_setCurrentTime_Callback";
|
| + void setCurrentTime(double seconds) native "SVGSVGElement_setCurrentTime_Callback";
|
|
|
| @DomName('SVGSVGElement.suspendRedraw')
|
| @DocsEditable
|
| @@ -6832,7 +6832,7 @@ class TextContentElement extends StyledElement implements Tests, ExternalResourc
|
|
|
| @DomName('SVGTextContentElement.getComputedTextLength')
|
| @DocsEditable
|
| - num getComputedTextLength() native "SVGTextContentElement_getComputedTextLength_Callback";
|
| + double getComputedTextLength() native "SVGTextContentElement_getComputedTextLength_Callback";
|
|
|
| @DomName('SVGTextContentElement.getEndPositionOfChar')
|
| @DocsEditable
|
| @@ -6848,7 +6848,7 @@ class TextContentElement extends StyledElement implements Tests, ExternalResourc
|
|
|
| @DomName('SVGTextContentElement.getRotationOfChar')
|
| @DocsEditable
|
| - num getRotationOfChar(int offset) native "SVGTextContentElement_getRotationOfChar_Callback";
|
| + double getRotationOfChar(int offset) native "SVGTextContentElement_getRotationOfChar_Callback";
|
|
|
| @DomName('SVGTextContentElement.getStartPositionOfChar')
|
| @DocsEditable
|
| @@ -6856,7 +6856,7 @@ class TextContentElement extends StyledElement implements Tests, ExternalResourc
|
|
|
| @DomName('SVGTextContentElement.getSubStringLength')
|
| @DocsEditable
|
| - num getSubStringLength(int offset, int length) native "SVGTextContentElement_getSubStringLength_Callback";
|
| + double getSubStringLength(int offset, int length) native "SVGTextContentElement_getSubStringLength_Callback";
|
|
|
| @DomName('SVGTextContentElement.selectSubString')
|
| @DocsEditable
|
| @@ -7110,7 +7110,7 @@ class Transform extends NativeFieldWrapperClass1 {
|
|
|
| @DomName('SVGTransform.angle')
|
| @DocsEditable
|
| - num get angle native "SVGTransform_angle_Getter";
|
| + double get angle native "SVGTransform_angle_Getter";
|
|
|
| @DomName('SVGTransform.matrix')
|
| @DocsEditable
|
| @@ -7126,23 +7126,23 @@ class Transform extends NativeFieldWrapperClass1 {
|
|
|
| @DomName('SVGTransform.setRotate')
|
| @DocsEditable
|
| - void setRotate(num angle, num cx, num cy) native "SVGTransform_setRotate_Callback";
|
| + void setRotate(double angle, double cx, double cy) native "SVGTransform_setRotate_Callback";
|
|
|
| @DomName('SVGTransform.setScale')
|
| @DocsEditable
|
| - void setScale(num sx, num sy) native "SVGTransform_setScale_Callback";
|
| + void setScale(double sx, double sy) native "SVGTransform_setScale_Callback";
|
|
|
| @DomName('SVGTransform.setSkewX')
|
| @DocsEditable
|
| - void setSkewX(num angle) native "SVGTransform_setSkewX_Callback";
|
| + void setSkewX(double angle) native "SVGTransform_setSkewX_Callback";
|
|
|
| @DomName('SVGTransform.setSkewY')
|
| @DocsEditable
|
| - void setSkewY(num angle) native "SVGTransform_setSkewY_Callback";
|
| + void setSkewY(double angle) native "SVGTransform_setSkewY_Callback";
|
|
|
| @DomName('SVGTransform.setTranslate')
|
| @DocsEditable
|
| - void setTranslate(num tx, num ty) native "SVGTransform_setTranslate_Callback";
|
| + void setTranslate(double tx, double ty) native "SVGTransform_setTranslate_Callback";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -7591,7 +7591,7 @@ class ZoomEvent extends UIEvent {
|
|
|
| @DomName('SVGZoomEvent.newScale')
|
| @DocsEditable
|
| - num get newScale native "SVGZoomEvent_newScale_Getter";
|
| + double get newScale native "SVGZoomEvent_newScale_Getter";
|
|
|
| @DomName('SVGZoomEvent.newTranslate')
|
| @DocsEditable
|
| @@ -7599,7 +7599,7 @@ class ZoomEvent extends UIEvent {
|
|
|
| @DomName('SVGZoomEvent.previousScale')
|
| @DocsEditable
|
| - num get previousScale native "SVGZoomEvent_previousScale_Getter";
|
| + double get previousScale native "SVGZoomEvent_previousScale_Getter";
|
|
|
| @DomName('SVGZoomEvent.previousTranslate')
|
| @DocsEditable
|
|
|