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