WebKitCSSMatrix.idl 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * Copyright (C) 2008, 2010 Apple Inc. All Rights Reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. * 1. Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * 2. Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. *
  13. * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
  14. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  15. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  16. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
  17. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  18. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  19. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  20. * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  21. * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  22. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  23. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  24. */
  25. // Introduced in DOM Level ?:
  26. [
  27. Constructor([Default=NullString] optional DOMString cssValue),
  28. ConstructorRaisesException,
  29. ] interface WebKitCSSMatrix {
  30. // These attributes are simple aliases for certain elements of the 4x4 matrix
  31. attribute double a; // alias for m11
  32. attribute double b; // alias for m12
  33. attribute double c; // alias for m21
  34. attribute double d; // alias for m22
  35. attribute double e; // alias for m41
  36. attribute double f; // alias for m42
  37. attribute double m11;
  38. attribute double m12;
  39. attribute double m13;
  40. attribute double m14;
  41. attribute double m21;
  42. attribute double m22;
  43. attribute double m23;
  44. attribute double m24;
  45. attribute double m31;
  46. attribute double m32;
  47. attribute double m33;
  48. attribute double m34;
  49. attribute double m41;
  50. attribute double m42;
  51. attribute double m43;
  52. attribute double m44;
  53. [RaisesException] void setMatrixValue([Default=Undefined] optional DOMString string);
  54. // Multiply this matrix by secondMatrix, on the right (result = this * secondMatrix)
  55. [Immutable] WebKitCSSMatrix multiply([Default=Undefined] optional WebKitCSSMatrix secondMatrix);
  56. // Return the inverse of this matrix. Throw an exception if the matrix is not invertible
  57. [Immutable, RaisesException] WebKitCSSMatrix inverse();
  58. // Return this matrix translated by the passed values.
  59. // Passing a NaN will use a value of 0. This allows the 3D form to used for 2D operations
  60. [Immutable] WebKitCSSMatrix translate([Default=Undefined] optional double x,
  61. [Default=Undefined] optional double y,
  62. [Default=Undefined] optional double z);
  63. // Returns this matrix scaled by the passed values.
  64. // Passing scaleX or scaleZ as NaN uses a value of 1, but passing scaleY of NaN
  65. // makes it the same as scaleX. This allows the 3D form to used for 2D operations
  66. [Immutable] WebKitCSSMatrix scale([Default=Undefined] optional double scaleX,
  67. [Default=Undefined] optional double scaleY,
  68. [Default=Undefined] optional double scaleZ);
  69. // Returns this matrix rotated by the passed values.
  70. // If rotY and rotZ are NaN, rotate about Z (rotX=0, rotateY=0, rotateZ=rotX).
  71. // Otherwise use a rotation value of 0 for any passed NaN.
  72. [Immutable] WebKitCSSMatrix rotate([Default=Undefined] optional double rotX,
  73. [Default=Undefined] optional double rotY,
  74. [Default=Undefined] optional double rotZ);
  75. // Returns this matrix rotated about the passed axis by the passed angle.
  76. // Passing a NaN will use a value of 0. If the axis is (0,0,0) use a value
  77. // of (0,0,1).
  78. [Immutable] WebKitCSSMatrix rotateAxisAngle([Default=Undefined] optional double x,
  79. [Default=Undefined] optional double y,
  80. [Default=Undefined] optional double z,
  81. [Default=Undefined] optional double angle);
  82. // Returns this matrix skewed along the X axis by the passed values.
  83. // Passing a NaN will use a value of 0.
  84. [Immutable] WebKitCSSMatrix skewX([Default=Undefined] optional double angle);
  85. // Returns this matrix skewed along the Y axis by the passed values.
  86. // Passing a NaN will use a value of 0.
  87. [Immutable] WebKitCSSMatrix skewY([Default=Undefined] optional double angle);
  88. [NotEnumerable] DOMString toString();
  89. };