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

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

Issue 2365153002: [GeometryInterface] Add rotateAxisAngle*(x,y,z,angle) function. (Closed)
Patch Set: Created 4 years, 3 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
Index: third_party/WebKit/Source/core/dom/DOMMatrix.h
diff --git a/third_party/WebKit/Source/core/dom/DOMMatrix.h b/third_party/WebKit/Source/core/dom/DOMMatrix.h
index 1ad7fadee155c70ba0ee90376ed81c2117d0c235..4ca835f2e5bd95e76f8abc6f380baafb126c5601 100644
--- a/third_party/WebKit/Source/core/dom/DOMMatrix.h
+++ b/third_party/WebKit/Source/core/dom/DOMMatrix.h
@@ -51,6 +51,7 @@ public:
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);
+ DOMMatrix* rotateAxisAngleSelf(double x = 0, double y = 0, double z = 0, double angle = 0);
DOMMatrix* skewXSelf(double sx = 0);
DOMMatrix* skewYSelf(double sy = 0);
DOMMatrix* invertSelf();

Powered by Google App Engine
This is Rietveld 408576698