Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(815)

Unified Diff: Source/core/dom/DOMMatrix.h

Issue 504623003: Implement skew*() methods in DOMMatrix. Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/fast/dom/geometry-interfaces-dom-matrix-skew.html ('k') | Source/core/dom/DOMMatrix.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DOMMatrix.h
diff --git a/Source/core/dom/DOMMatrix.h b/Source/core/dom/DOMMatrix.h
index 6501e5ed080194f4ee9b17aee6eb615ef399deba..b8f874004613e73b99fe61f4167d3eecae99eadd 100644
--- a/Source/core/dom/DOMMatrix.h
+++ b/Source/core/dom/DOMMatrix.h
@@ -48,6 +48,8 @@ public:
DOMMatrix* rotateSelf(double angle, double ox = 0, double oy = 0);
DOMMatrix* rotateFromVectorSelf(double x, double y);
DOMMatrix* rotateAxisAngleSelf(double x, double y, double z, double angle);
+ DOMMatrix* skewXSelf(double sx);
+ DOMMatrix* skewYSelf(double sy);
private:
DOMMatrix(const TransformationMatrix&, bool is2D = true);
« no previous file with comments | « LayoutTests/fast/dom/geometry-interfaces-dom-matrix-skew.html ('k') | Source/core/dom/DOMMatrix.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698