summaryrefslogtreecommitdiffstats
path: root/src/2geom/transforms.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-06-18 23:31:50 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-06-18 23:31:50 +0000
commit20458ea11cceeb57adbfbc8a20667c0ce0d79e74 (patch)
tree47c7441fa2494766a323ac212f332178b010d728 /src/2geom/transforms.cpp
parentupdate 2geom (diff)
downloadinkscape-20458ea11cceeb57adbfbc8a20667c0ce0d79e74.tar.gz
inkscape-20458ea11cceeb57adbfbc8a20667c0ce0d79e74.zip
update 2geom (r1350)
(bzr r5999)
Diffstat (limited to 'src/2geom/transforms.cpp')
-rw-r--r--src/2geom/transforms.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/2geom/transforms.cpp b/src/2geom/transforms.cpp
index b2f305d18..62b340221 100644
--- a/src/2geom/transforms.cpp
+++ b/src/2geom/transforms.cpp
@@ -46,6 +46,7 @@ Matrix operator*(Matrix const &m, Scale const &s) {
}
Matrix operator*(Matrix const &m, Rotate const &r) {
+ // TODO: we just convert the Rotate to a matrix and use the existing operator*(); is there a better way?
Matrix ret(m);
ret *= (Matrix) r;
return ret;