| 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: Do not edit - generated code. |
| 6 |
| 7 /// @domName SVGMatrix |
| 8 interface SVGMatrix { |
| 9 |
| 10 /** @domName SVGMatrix.a */ |
| 11 num a; |
| 12 |
| 13 /** @domName SVGMatrix.b */ |
| 14 num b; |
| 15 |
| 16 /** @domName SVGMatrix.c */ |
| 17 num c; |
| 18 |
| 19 /** @domName SVGMatrix.d */ |
| 20 num d; |
| 21 |
| 22 /** @domName SVGMatrix.e */ |
| 23 num e; |
| 24 |
| 25 /** @domName SVGMatrix.f */ |
| 26 num f; |
| 27 |
| 28 /** @domName SVGMatrix.flipX */ |
| 29 SVGMatrix flipX(); |
| 30 |
| 31 /** @domName SVGMatrix.flipY */ |
| 32 SVGMatrix flipY(); |
| 33 |
| 34 /** @domName SVGMatrix.inverse */ |
| 35 SVGMatrix inverse(); |
| 36 |
| 37 /** @domName SVGMatrix.multiply */ |
| 38 SVGMatrix multiply(SVGMatrix secondMatrix); |
| 39 |
| 40 /** @domName SVGMatrix.rotate */ |
| 41 SVGMatrix rotate(num angle); |
| 42 |
| 43 /** @domName SVGMatrix.rotateFromVector */ |
| 44 SVGMatrix rotateFromVector(num x, num y); |
| 45 |
| 46 /** @domName SVGMatrix.scale */ |
| 47 SVGMatrix scale(num scaleFactor); |
| 48 |
| 49 /** @domName SVGMatrix.scaleNonUniform */ |
| 50 SVGMatrix scaleNonUniform(num scaleFactorX, num scaleFactorY); |
| 51 |
| 52 /** @domName SVGMatrix.skewX */ |
| 53 SVGMatrix skewX(num angle); |
| 54 |
| 55 /** @domName SVGMatrix.skewY */ |
| 56 SVGMatrix skewY(num angle); |
| 57 |
| 58 /** @domName SVGMatrix.translate */ |
| 59 SVGMatrix translate(num x, num y); |
| 60 } |
| OLD | NEW |