mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
23 lines
421 B
Objective-C
23 lines
421 B
Objective-C
/*!
|
|
http://www.w3.org/TR/SVG/coords.html#InterfaceSVGPoint
|
|
|
|
interface SVGPoint {
|
|
|
|
attribute float x setraises(DOMException);
|
|
attribute float y setraises(DOMException);
|
|
|
|
SVGPoint matrixTransform(in SVGMatrix matrix);
|
|
};
|
|
*/
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "SVGMatrix.h"
|
|
|
|
@interface SVGPoint : NSObject
|
|
|
|
@property(nonatomic,readonly) float x, y;
|
|
|
|
-(SVGPoint*) matrixTransform:(SVGMatrix*) matrix;
|
|
|
|
@end
|