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

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

Issue 2283173003: Implement inverse & invertSelf function in DOMMatrix & DOMMatrixReadOnly. (Closed)
Patch Set: Implement inverse & invertSelf funtion in DomMatrix & DOMMatrixReadOnly. Created 4 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
Index: third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
diff --git a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
index 08779b37bf243202d81dcd1024e920050ddd4b58..cd19086fb95f05e087478c3ee094075bfa73a5c1 100644
--- a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
+++ b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
@@ -59,6 +59,7 @@ public:
DOMMatrix* skewY(double sy);
DOMMatrix* flipX();
DOMMatrix* flipY();
+ DOMMatrix* inverse();
DOMFloat32Array* toFloat32Array() const;
DOMFloat64Array* toFloat64Array() const;

Powered by Google App Engine
This is Rietveld 408576698