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

Side by Side Diff: third_party/WebKit/Source/core/dom/DOMMatrixInit.idl

Issue 2283363003: GeometryInterface: Add DOMMatrixInit and fromMatrix(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 3 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
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // https://drafts.fxtf.org/geometry/#dictdef-dommatrixinit
6
7 dictionary DOMMatrixInit {
8 unrestricted double a;
9 unrestricted double b;
10 unrestricted double c;
11 unrestricted double d;
12 unrestricted double e;
13 unrestricted double f;
14 unrestricted double m11;
15 unrestricted double m12;
16 unrestricted double m13 = 0;
17 unrestricted double m14 = 0;
18 unrestricted double m21;
19 unrestricted double m22;
20 unrestricted double m23 = 0;
21 unrestricted double m24 = 0;
22 unrestricted double m31 = 0;
23 unrestricted double m32 = 0;
24 unrestricted double m33 = 1;
25 unrestricted double m34 = 0;
26 unrestricted double m41;
27 unrestricted double m42;
28 unrestricted double m43 = 0;
29 unrestricted double m44 = 1;
30 boolean is2D;
31 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698