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

16 lines
306 B
Objective-C

#import "SVGPreserveAspectRatio.h"
@implementation SVGPreserveAspectRatio
/** Sets default values mandated by SVG Spec */
- (id)init
{
self = [super init];
if (self) {
self.align = SVG_PRESERVEASPECTRATIO_XMIDYMID;
self.meetOrSlice = SVG_MEETORSLICE_MEET;
}
return self;
}
@end