Implement some more methods

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@13285 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fedor 2002-04-01 16:29:45 +00:00
parent 304a139434
commit c8444cdff3
7 changed files with 18 additions and 1321 deletions

View file

@ -562,18 +562,17 @@ static unsigned int unique_index = 0;
- (NSAffineTransform *) GSCurrentCTM
{
[self notImplemented: _cmd];
return nil;
return [gstate GSCurrentCTM];
}
- (void) GSSetCTM: (NSAffineTransform *)ctm
{
[self notImplemented: _cmd];
[gstate GSSetCTM: ctm];
}
- (void) GSConcatCTM: (NSAffineTransform *)ctm
{
[self notImplemented: _cmd];
[gstate GSConcatCTM: ctm];
}
/* ----------------------------------------------------------------------- */