OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // https://drafts.fxtf.org/geometry/#dictdef-dommatrixinit | 5 // https://drafts.fxtf.org/geometry/#dictdef-dommatrixinit |
6 | 6 |
7 dictionary DOMMatrixInit { | 7 dictionary DOMMatrixInit { |
8 unrestricted double a; | 8 unrestricted double a; |
9 unrestricted double b; | 9 unrestricted double b; |
10 unrestricted double c; | 10 unrestricted double c; |
(...skipping 11 matching lines...) Expand all Loading... |
22 unrestricted double m31 = 0; | 22 unrestricted double m31 = 0; |
23 unrestricted double m32 = 0; | 23 unrestricted double m32 = 0; |
24 unrestricted double m33 = 1; | 24 unrestricted double m33 = 1; |
25 unrestricted double m34 = 0; | 25 unrestricted double m34 = 0; |
26 unrestricted double m41; | 26 unrestricted double m41; |
27 unrestricted double m42; | 27 unrestricted double m42; |
28 unrestricted double m43 = 0; | 28 unrestricted double m43 = 0; |
29 unrestricted double m44 = 1; | 29 unrestricted double m44 = 1; |
30 boolean is2D; | 30 boolean is2D; |
31 }; | 31 }; |
OLD | NEW |