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