2019-12-26 15:55:27 +04:00

16 lines
186 B
Objective-C

#import "SVGPoint.h"
@implementation SVGPoint
@synthesize x, y;
-(SVGPoint*) matrixTransform:(SVGMatrix*) matrix
{
NSAssert( FALSE, @"Not implemented yet" );
return nil;
}
@end