OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 // http://dev.w3.org/fxtf/geometry/#DOMMatrix | 5 // http://dev.w3.org/fxtf/geometry/#DOMMatrix |
6 | 6 |
7 [ | 7 [ |
8 Constructor, | 8 Constructor, |
9 Constructor(DOMMatrixReadOnly other), | 9 Constructor(DOMMatrixReadOnly other), |
10 // FIXME: Should implement more constructors (See: crbug.com/388780) | 10 // FIXME: Should implement more constructors (See: crbug.com/388780) |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 DOMMatrix scale3dSelf(unrestricted double scale, | 57 DOMMatrix scale3dSelf(unrestricted double scale, |
58 optional unrestricted double originX = 0, | 58 optional unrestricted double originX = 0, |
59 optional unrestricted double originY = 0, | 59 optional unrestricted double originY = 0, |
60 optional unrestricted double originZ = 0); | 60 optional unrestricted double originZ = 0); |
61 DOMMatrix scaleNonUniformSelf(unrestricted double scaleX, | 61 DOMMatrix scaleNonUniformSelf(unrestricted double scaleX, |
62 optional unrestricted double scaleY = 1, | 62 optional unrestricted double scaleY = 1, |
63 optional unrestricted double scaleZ = 1, | 63 optional unrestricted double scaleZ = 1, |
64 optional unrestricted double originX = 0, | 64 optional unrestricted double originX = 0, |
65 optional unrestricted double originY = 0, | 65 optional unrestricted double originY = 0, |
66 optional unrestricted double originZ = 0); | 66 optional unrestricted double originZ = 0); |
| 67 DOMMatrix rotateAxisAngleSelf(optional unrestricted double x = 0, |
| 68 optional unrestricted double y = 0, |
| 69 optional unrestricted double z = 0, |
| 70 optional unrestricted double angle = 0); |
67 DOMMatrix skewXSelf(optional unrestricted double sx = 0); | 71 DOMMatrix skewXSelf(optional unrestricted double sx = 0); |
68 DOMMatrix skewYSelf(optional unrestricted double sy = 0); | 72 DOMMatrix skewYSelf(optional unrestricted double sy = 0); |
69 DOMMatrix invertSelf(); | 73 DOMMatrix invertSelf(); |
70 }; | 74 }; |
OLD | NEW |