mirror of
https://github.com/gnustep/libs-back.git
synced 2025-05-31 01:11:00 +00:00
Replaced appendTransform: with prependTransform:
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@25223 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a1cea73cd8
commit
70c32e5675
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2007-06-05 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
|
* Source/art/image.m (-DPSimage:): Replaced appendTransform: with
|
||||||
|
prependTransform:. Undoes change from 2004-01-25.
|
||||||
|
|
||||||
2007-05-02 Nicola Pero <nicola.pero@meta-innovation.com>
|
2007-05-02 Nicola Pero <nicola.pero@meta-innovation.com>
|
||||||
|
|
||||||
* Source/GNUmakefile.postamble (after-clean): Remove
|
* Source/GNUmakefile.postamble (after-clean): Remove
|
||||||
|
|
|
@ -589,7 +589,7 @@ seem to cause edges to be off by a pixel
|
||||||
if (!wi || !wi->data) return;
|
if (!wi || !wi->data) return;
|
||||||
if (all_clipped) return;
|
if (all_clipped) return;
|
||||||
|
|
||||||
[matrix appendTransform: ctm];
|
[matrix prependTransform: ctm];
|
||||||
ts = [matrix transformStruct];
|
ts = [matrix transformStruct];
|
||||||
if (fabs(ts.m11 - 1.0) < 0.001 && fabs(ts.m12) < 0.001
|
if (fabs(ts.m11 - 1.0) < 0.001 && fabs(ts.m12) < 0.001
|
||||||
&& fabs(ts.m22 - 1.0) < 0.001 && fabs(ts.m21) < 0.001)
|
&& fabs(ts.m22 - 1.0) < 0.001 && fabs(ts.m21) < 0.001)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue