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

Side by Side Diff: client/dom/generated/src/frog/SVGMatrix.dart

Issue 8618007: Enable SVG for dartc and frog (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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
2 class SVGMatrix native "SVGMatrix" {
3
4 num a;
5
6 num b;
7
8 num c;
9
10 num d;
11
12 num e;
13
14 num f;
15
16 SVGMatrix flipX() native;
17
18 SVGMatrix flipY() native;
19
20 SVGMatrix inverse() native;
21
22 SVGMatrix multiply(SVGMatrix secondMatrix) native;
23
24 SVGMatrix rotate(num angle) native;
25
26 SVGMatrix rotateFromVector(num x, num y) native;
27
28 SVGMatrix scale(num scaleFactor) native;
29
30 SVGMatrix scaleNonUniform(num scaleFactorX, num scaleFactorY) native;
31
32 SVGMatrix skewX(num angle) native;
33
34 SVGMatrix skewY(num angle) native;
35
36 SVGMatrix translate(num x, num y) native;
37
38 var dartObjectLocalStorage;
39
40 String get typeName() native;
41 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGMaskElement.dart ('k') | client/dom/generated/src/frog/SVGMetadataElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698