| Index: Source/core/dom/DOMMatrix.h
|
| diff --git a/Source/core/dom/DOMMatrix.h b/Source/core/dom/DOMMatrix.h
|
| index 03ca8d013670cf082e9f63945b8f74fb714cd035..f3b310f769e3c55dea93f942082a8a6f0b985367 100644
|
| --- a/Source/core/dom/DOMMatrix.h
|
| +++ b/Source/core/dom/DOMMatrix.h
|
| @@ -39,6 +39,10 @@ public:
|
| void setM44(double value) { m_matrix.setM44(value); setIs2D(value != 1); }
|
|
|
| DOMMatrix* translateSelf(double tx, double ty, double tz = 0);
|
| + DOMMatrix* scaleSelf(double scale, double ox = 0, double oy = 0);
|
| + DOMMatrix* scale3dSelf(double scale, double ox = 0, double oy = 0, double oz = 0);
|
| + DOMMatrix* scaleNonUniformSelf(double sx, double sy = 1, double sz = 1,
|
| + double ox = 0, double oy = 0, double oz = 0);
|
|
|
| private:
|
| DOMMatrix(const TransformationMatrix&, bool is2D = true);
|
|
|