Use standard NSAffineTransform methods

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@13930 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2002-06-22 15:41:58 +00:00
parent 31fc3a695b
commit 9c5ed166aa

View file

@ -505,7 +505,7 @@
// This is rather slow, but it is not used very often
ictm = [ctm copyWithZone: GSObjCZone(self)];
[ictm inverse];
[ictm invert];
user = [ictm pointInMatrixSpace: [path currentPoint]];
RELEASE(ictm);
*x = user.x;
@ -573,7 +573,7 @@
- (void)DPSscale: (float)x : (float)y
{
[ctm scaleBy: x : y];
[ctm scaleXBy: x yBy: y];
}
- (void)DPStranslate: (float)x : (float)y