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 _SVGTransformWrappingImplementation extends DOMWrapperBase implements SVGT
ransform { | |
8 _SVGTransformWrappingImplementation() : super() {} | |
9 | |
10 static create__SVGTransformWrappingImplementation() native { | |
11 return new _SVGTransformWrappingImplementation(); | |
12 } | |
13 | |
14 num get angle() { return _get_angle(this); } | |
15 static num _get_angle(var _this) native; | |
16 | |
17 SVGMatrix get matrix() { return _get_matrix(this); } | |
18 static SVGMatrix _get_matrix(var _this) native; | |
19 | |
20 int get type() { return _get_type(this); } | |
21 static int _get_type(var _this) native; | |
22 | |
23 void setMatrix(SVGMatrix matrix) { | |
24 _setMatrix(this, matrix); | |
25 return; | |
26 } | |
27 static void _setMatrix(receiver, matrix) native; | |
28 | |
29 void setRotate(num angle, num cx, num cy) { | |
30 _setRotate(this, angle, cx, cy); | |
31 return; | |
32 } | |
33 static void _setRotate(receiver, angle, cx, cy) native; | |
34 | |
35 void setScale(num sx, num sy) { | |
36 _setScale(this, sx, sy); | |
37 return; | |
38 } | |
39 static void _setScale(receiver, sx, sy) native; | |
40 | |
41 void setSkewX(num angle) { | |
42 _setSkewX(this, angle); | |
43 return; | |
44 } | |
45 static void _setSkewX(receiver, angle) native; | |
46 | |
47 void setSkewY(num angle) { | |
48 _setSkewY(this, angle); | |
49 return; | |
50 } | |
51 static void _setSkewY(receiver, angle) native; | |
52 | |
53 void setTranslate(num tx, num ty) { | |
54 _setTranslate(this, tx, ty); | |
55 return; | |
56 } | |
57 static void _setTranslate(receiver, tx, ty) native; | |
58 | |
59 String get typeName() { return "SVGTransform"; } | |
60 } | |
OLD | NEW |