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

Side by Side Diff: client/html/generated/html/frog/SVGMatrix.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (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
2 class _SVGMatrixImpl implements 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 _SVGMatrixImpl flipX() native;
17
18 _SVGMatrixImpl flipY() native;
19
20 _SVGMatrixImpl inverse() native;
21
22 _SVGMatrixImpl multiply(_SVGMatrixImpl secondMatrix) native;
23
24 _SVGMatrixImpl rotate(num angle) native;
25
26 _SVGMatrixImpl rotateFromVector(num x, num y) native;
27
28 _SVGMatrixImpl scale(num scaleFactor) native;
29
30 _SVGMatrixImpl scaleNonUniform(num scaleFactorX, num scaleFactorY) native;
31
32 _SVGMatrixImpl skewX(num angle) native;
33
34 _SVGMatrixImpl skewY(num angle) native;
35
36 _SVGMatrixImpl translate(num x, num y) native;
37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698