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

17 lines
391 B
Objective-C

/**
* http://www.w3.org/TR/SVG/types.html#InterfaceSVGTransformable
interface SVGTransformable : SVGLocatable {
readonly attribute SVGAnimatedTransformList transform;
*/
#import <Foundation/Foundation.h>
#import <QuartzCore/QuartzCore.h>
@protocol SVGTransformable <NSObject>
@property(nonatomic) CGAffineTransform transform; // FIXME: TODO: this should be a different type
@end