mirror of
https://github.com/gnustep/libs-back.git
synced 2025-04-23 16:10:52 +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
91572eea89
commit
98b5c95dcd
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>
|
||||
|
||||
* 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 (all_clipped) return;
|
||||
|
||||
[matrix appendTransform: ctm];
|
||||
[matrix prependTransform: ctm];
|
||||
ts = [matrix transformStruct];
|
||||
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)
|
||||
|
|
Loading…
Reference in a new issue