summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a40ae3d)
raw | patch | inline | side by side (parent: a40ae3d)
author | johanengelen <johanengelen@users.sourceforge.net> | |
Thu, 12 Jun 2008 20:18:53 +0000 (20:18 +0000) | ||
committer | johanengelen <johanengelen@users.sourceforge.net> | |
Thu, 12 Jun 2008 20:18:53 +0000 (20:18 +0000) |
src/2geom/matrix.h | patch | blob | history |
diff --git a/src/2geom/matrix.h b/src/2geom/matrix.h
index c9f244d6243ac7a8e1a38cc56e9f913ecb577aae..ba4451265a25275eb62453800fc2dfe46182b218 100644 (file)
--- a/src/2geom/matrix.h
+++ b/src/2geom/matrix.h
};
Matrix operator*(Matrix const &a, Matrix const &b);
+inline Matrix &operator*=(Matrix &a, Matrix const &b) { a = a * b; return a; }
/** A function to print out the Matrix (for debugging) */
inline std::ostream &operator<< (std::ostream &out_file, const Geom::Matrix &m) {