diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2011-02-05 01:06:18 +0000 |
|---|---|---|
| committer | Krzysztof KosiĆski <tweenk.pl@gmail.com> | 2011-02-05 01:06:18 +0000 |
| commit | f6809cd36481d5e20de106c23e3db527b026b417 (patch) | |
| tree | 2c44b8e15ce76314a357d7098a5c2039e336a201 /src/2geom/transforms.cpp | |
| parent | temporary work around 2geom matrix bug to make inkscape more usable (diff) | |
| download | inkscape-f6809cd36481d5e20de106c23e3db527b026b417.tar.gz inkscape-f6809cd36481d5e20de106c23e3db527b026b417.zip | |
Properly fix seltrans brokenness in 2Geom and pull updated files
into Inkscape
(bzr r10034)
Diffstat (limited to 'src/2geom/transforms.cpp')
| -rw-r--r-- | src/2geom/transforms.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/2geom/transforms.cpp b/src/2geom/transforms.cpp index 2658719c4..3a1866c13 100644 --- a/src/2geom/transforms.cpp +++ b/src/2geom/transforms.cpp @@ -60,12 +60,12 @@ Point &Point::operator*=(Rotate const &r) } Point &Point::operator*=(HShear const &h) { - _pt[X] += h.f * _pt[X]; + _pt[X] += h.f * _pt[Y]; return *this; } Point &Point::operator*=(VShear const &v) { - _pt[Y] += v.f * _pt[Y]; + _pt[Y] += v.f * _pt[X]; return *this; } |
