summaryrefslogtreecommitdiffstats
path: root/src/2geom/transforms.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/2geom/transforms.h')
-rw-r--r--src/2geom/transforms.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/2geom/transforms.h b/src/2geom/transforms.h
index 0e276bfc2..fb077a910 100644
--- a/src/2geom/transforms.h
+++ b/src/2geom/transforms.h
@@ -82,7 +82,7 @@ class Rotate {
explicit Rotate(Coord theta) : vec(std::cos(theta), std::sin(theta)) {}
Rotate(Point const &p) {Point v = p; v.normalize(); vec = v;} //TODO: UGLY!
explicit Rotate(Coord x, Coord y) { Rotate(Point(x, y)); }
- inline operator Matrix() const { return Matrix(vec[X], -vec[Y], vec[Y], vec[X], 0, 0); }
+ inline operator Matrix() const { return Matrix(vec[X], vec[Y], -vec[Y], vec[X], 0, 0); }
inline Coord operator[](Dim2 const dim) const { return vec[dim]; }
inline Coord operator[](unsigned const dim) const { return vec[dim]; }