| 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 Constructor(sequence<unrestricted double> numberSequence), | 10 Constructor(sequence<unrestricted double> numberSequence), |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 inherit attribute unrestricted double m24; | 35 inherit attribute unrestricted double m24; |
| 36 inherit attribute unrestricted double m31; | 36 inherit attribute unrestricted double m31; |
| 37 inherit attribute unrestricted double m32; | 37 inherit attribute unrestricted double m32; |
| 38 inherit attribute unrestricted double m33; | 38 inherit attribute unrestricted double m33; |
| 39 inherit attribute unrestricted double m34; | 39 inherit attribute unrestricted double m34; |
| 40 inherit attribute unrestricted double m41; | 40 inherit attribute unrestricted double m41; |
| 41 inherit attribute unrestricted double m42; | 41 inherit attribute unrestricted double m42; |
| 42 inherit attribute unrestricted double m43; | 42 inherit attribute unrestricted double m43; |
| 43 inherit attribute unrestricted double m44; | 43 inherit attribute unrestricted double m44; |
| 44 | 44 |
| 45 // TODO(zino): Should implement rotateSelf() method (See: crbug.com/645878) | |
| 46 // TODO(zino): Should implement rotateFromVectorSelf() method (See: crbug.co
m/645882) | |
| 47 // TODO(zino): Should implement rotateAxisAngleSelf() method (See: crbug.com
/645883) | |
| 48 // TODO(zino): Should implement setMatrixValue() method (See: crbug.com/6458
84) | |
| 49 // TODO(zino): Should remove scaleNonUniformSelf() method (See: crbug.com/64
5887) | |
| 50 // Mutable transform methods | 45 // Mutable transform methods |
| 51 [RaisesException] DOMMatrix multiplySelf(optional DOMMatrixInit other); | 46 [RaisesException] DOMMatrix multiplySelf(optional DOMMatrixInit other); |
| 52 [RaisesException] DOMMatrix preMultiplySelf(optional DOMMatrixInit other); | 47 [RaisesException] DOMMatrix preMultiplySelf(optional DOMMatrixInit other); |
| 53 DOMMatrix translateSelf(optional unrestricted double tx = 0, | 48 DOMMatrix translateSelf(optional unrestricted double tx = 0, |
| 54 optional unrestricted double ty = 0, | 49 optional unrestricted double ty = 0, |
| 55 optional unrestricted double tz = 0); | 50 optional unrestricted double tz = 0); |
| 56 DOMMatrix scaleSelf(optional unrestricted double scaleX = 1, | 51 DOMMatrix scaleSelf(optional unrestricted double scaleX = 1, |
| 57 optional unrestricted double scaleY, | 52 optional unrestricted double scaleY, |
| 58 optional unrestricted double scaleZ = 1, | 53 optional unrestricted double scaleZ = 1, |
| 59 optional unrestricted double originX = 0, | 54 optional unrestricted double originX = 0, |
| (...skipping 11 matching lines...) Expand all Loading... |
| 71 DOMMatrix rotateAxisAngleSelf(optional unrestricted double x = 0, | 66 DOMMatrix rotateAxisAngleSelf(optional unrestricted double x = 0, |
| 72 optional unrestricted double y = 0, | 67 optional unrestricted double y = 0, |
| 73 optional unrestricted double z = 0, | 68 optional unrestricted double z = 0, |
| 74 optional unrestricted double angle = 0); | 69 optional unrestricted double angle = 0); |
| 75 DOMMatrix skewXSelf(optional unrestricted double sx = 0); | 70 DOMMatrix skewXSelf(optional unrestricted double sx = 0); |
| 76 DOMMatrix skewYSelf(optional unrestricted double sy = 0); | 71 DOMMatrix skewYSelf(optional unrestricted double sy = 0); |
| 77 DOMMatrix invertSelf(); | 72 DOMMatrix invertSelf(); |
| 78 | 73 |
| 79 [RaisesException] DOMMatrix setMatrixValue(DOMString transformList); | 74 [RaisesException] DOMMatrix setMatrixValue(DOMString transformList); |
| 80 }; | 75 }; |
| OLD | NEW |