Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: client/html/generated/html/interface/CSSMatrix.dart

Issue 9663027: Remove generated directories with 100s of files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 interface CSSMatrix default _CSSMatrixFactoryProvider {
8
9 CSSMatrix([String cssValue]);
10
11 num a;
12
13 num b;
14
15 num c;
16
17 num d;
18
19 num e;
20
21 num f;
22
23 num m11;
24
25 num m12;
26
27 num m13;
28
29 num m14;
30
31 num m21;
32
33 num m22;
34
35 num m23;
36
37 num m24;
38
39 num m31;
40
41 num m32;
42
43 num m33;
44
45 num m34;
46
47 num m41;
48
49 num m42;
50
51 num m43;
52
53 num m44;
54
55 CSSMatrix inverse();
56
57 CSSMatrix multiply(CSSMatrix secondMatrix);
58
59 CSSMatrix rotate(num rotX, num rotY, num rotZ);
60
61 CSSMatrix rotateAxisAngle(num x, num y, num z, num angle);
62
63 CSSMatrix scale(num scaleX, num scaleY, num scaleZ);
64
65 void setMatrixValue(String string);
66
67 CSSMatrix skewX(num angle);
68
69 CSSMatrix skewY(num angle);
70
71 String toString();
72
73 CSSMatrix translate(num x, num y, num z);
74 }
OLDNEW
« no previous file with comments | « client/html/generated/html/interface/CSSKeyframesRule.dart ('k') | client/html/generated/html/interface/CSSMediaRule.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698