mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
16 lines
186 B
Objective-C
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
|