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

Side by Side Diff: lib/html/doc/interface/SVGMatrix.dartdoc

Issue 10544064: Add dummy dart:html library for documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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:
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 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/SVGMaskElement.dartdoc ('k') | lib/html/doc/interface/SVGMetadataElement.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698