| 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 class _SVGMatrixWrappingImplementation extends DOMWrapperBase implements SVGMatr
ix { |
| 8 _SVGMatrixWrappingImplementation() : super() {} |
| 9 |
| 10 static create__SVGMatrixWrappingImplementation() native { |
| 11 return new _SVGMatrixWrappingImplementation(); |
| 12 } |
| 13 |
| 14 num get a() { return _get_a(this); } |
| 15 static num _get_a(var _this) native; |
| 16 |
| 17 void set a(num value) { _set_a(this, value); } |
| 18 static void _set_a(var _this, num value) native; |
| 19 |
| 20 num get b() { return _get_b(this); } |
| 21 static num _get_b(var _this) native; |
| 22 |
| 23 void set b(num value) { _set_b(this, value); } |
| 24 static void _set_b(var _this, num value) native; |
| 25 |
| 26 num get c() { return _get_c(this); } |
| 27 static num _get_c(var _this) native; |
| 28 |
| 29 void set c(num value) { _set_c(this, value); } |
| 30 static void _set_c(var _this, num value) native; |
| 31 |
| 32 num get d() { return _get_d(this); } |
| 33 static num _get_d(var _this) native; |
| 34 |
| 35 void set d(num value) { _set_d(this, value); } |
| 36 static void _set_d(var _this, num value) native; |
| 37 |
| 38 num get e() { return _get_e(this); } |
| 39 static num _get_e(var _this) native; |
| 40 |
| 41 void set e(num value) { _set_e(this, value); } |
| 42 static void _set_e(var _this, num value) native; |
| 43 |
| 44 num get f() { return _get_f(this); } |
| 45 static num _get_f(var _this) native; |
| 46 |
| 47 void set f(num value) { _set_f(this, value); } |
| 48 static void _set_f(var _this, num value) native; |
| 49 |
| 50 SVGMatrix flipX() { |
| 51 return _flipX(this); |
| 52 } |
| 53 static SVGMatrix _flipX(receiver) native; |
| 54 |
| 55 SVGMatrix flipY() { |
| 56 return _flipY(this); |
| 57 } |
| 58 static SVGMatrix _flipY(receiver) native; |
| 59 |
| 60 SVGMatrix inverse() { |
| 61 return _inverse(this); |
| 62 } |
| 63 static SVGMatrix _inverse(receiver) native; |
| 64 |
| 65 SVGMatrix multiply(SVGMatrix secondMatrix) { |
| 66 return _multiply(this, secondMatrix); |
| 67 } |
| 68 static SVGMatrix _multiply(receiver, secondMatrix) native; |
| 69 |
| 70 SVGMatrix rotate(num angle) { |
| 71 return _rotate(this, angle); |
| 72 } |
| 73 static SVGMatrix _rotate(receiver, angle) native; |
| 74 |
| 75 SVGMatrix rotateFromVector(num x, num y) { |
| 76 return _rotateFromVector(this, x, y); |
| 77 } |
| 78 static SVGMatrix _rotateFromVector(receiver, x, y) native; |
| 79 |
| 80 SVGMatrix scale(num scaleFactor) { |
| 81 return _scale(this, scaleFactor); |
| 82 } |
| 83 static SVGMatrix _scale(receiver, scaleFactor) native; |
| 84 |
| 85 SVGMatrix scaleNonUniform(num scaleFactorX, num scaleFactorY) { |
| 86 return _scaleNonUniform(this, scaleFactorX, scaleFactorY); |
| 87 } |
| 88 static SVGMatrix _scaleNonUniform(receiver, scaleFactorX, scaleFactorY) native
; |
| 89 |
| 90 SVGMatrix skewX(num angle) { |
| 91 return _skewX(this, angle); |
| 92 } |
| 93 static SVGMatrix _skewX(receiver, angle) native; |
| 94 |
| 95 SVGMatrix skewY(num angle) { |
| 96 return _skewY(this, angle); |
| 97 } |
| 98 static SVGMatrix _skewY(receiver, angle) native; |
| 99 |
| 100 SVGMatrix translate(num x, num y) { |
| 101 return _translate(this, x, y); |
| 102 } |
| 103 static SVGMatrix _translate(receiver, x, y) native; |
| 104 |
| 105 String get typeName() { return "SVGMatrix"; } |
| 106 } |
| OLD | NEW |