OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008, 2010 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008, 2010 Apple Inc. All Rights Reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 attribute unrestricted double m33; | 53 attribute unrestricted double m33; |
54 attribute unrestricted double m34; | 54 attribute unrestricted double m34; |
55 attribute unrestricted double m41; | 55 attribute unrestricted double m41; |
56 attribute unrestricted double m42; | 56 attribute unrestricted double m42; |
57 attribute unrestricted double m43; | 57 attribute unrestricted double m43; |
58 attribute unrestricted double m44; | 58 attribute unrestricted double m44; |
59 | 59 |
60 [RaisesException] void setMatrixValue([Default=Undefined] optional DOMString
string); | 60 [RaisesException] void setMatrixValue([Default=Undefined] optional DOMString
string); |
61 | 61 |
62 // Multiply this matrix by secondMatrix, on the right (result = this * secon
dMatrix) | 62 // Multiply this matrix by secondMatrix, on the right (result = this * secon
dMatrix) |
63 [Immutable] WebKitCSSMatrix multiply([Default=Undefined] optional WebKitCSSM
atrix secondMatrix); | 63 [Immutable, LegacyInterfaceTypeChecking] WebKitCSSMatrix multiply([Default=U
ndefined] optional WebKitCSSMatrix secondMatrix); |
64 | 64 |
65 // Return the inverse of this matrix. Throw an exception if the matrix is no
t invertible | 65 // Return the inverse of this matrix. Throw an exception if the matrix is no
t invertible |
66 [Immutable, RaisesException] WebKitCSSMatrix inverse(); | 66 [Immutable, RaisesException] WebKitCSSMatrix inverse(); |
67 | 67 |
68 // Return this matrix translated by the passed values. | 68 // Return this matrix translated by the passed values. |
69 // Passing a NaN will use a value of 0. This allows the 3D form to used for
2D operations | 69 // Passing a NaN will use a value of 0. This allows the 3D form to used for
2D operations |
70 [Immutable] WebKitCSSMatrix translate([Default=Undefined] optional unrestric
ted double x, | 70 [Immutable] WebKitCSSMatrix translate([Default=Undefined] optional unrestric
ted double x, |
71 [Default=Undefined] optional unrestric
ted double y, | 71 [Default=Undefined] optional unrestric
ted double y, |
72 [Default=Undefined] optional unrestric
ted double z); | 72 [Default=Undefined] optional unrestric
ted double z); |
73 | 73 |
(...skipping 22 matching lines...) Expand all Loading... |
96 // Returns this matrix skewed along the X axis by the passed values. | 96 // Returns this matrix skewed along the X axis by the passed values. |
97 // Passing a NaN will use a value of 0. | 97 // Passing a NaN will use a value of 0. |
98 [Immutable] WebKitCSSMatrix skewX([Default=Undefined] optional unrestricted
double angle); | 98 [Immutable] WebKitCSSMatrix skewX([Default=Undefined] optional unrestricted
double angle); |
99 | 99 |
100 // Returns this matrix skewed along the Y axis by the passed values. | 100 // Returns this matrix skewed along the Y axis by the passed values. |
101 // Passing a NaN will use a value of 0. | 101 // Passing a NaN will use a value of 0. |
102 [Immutable] WebKitCSSMatrix skewY([Default=Undefined] optional unrestricted
double angle); | 102 [Immutable] WebKitCSSMatrix skewY([Default=Undefined] optional unrestricted
double angle); |
103 | 103 |
104 [NotEnumerable] stringifier; | 104 [NotEnumerable] stringifier; |
105 }; | 105 }; |
106 | |
OLD | NEW |