15 lines
234 B
Objective-C
15 lines
234 B
Objective-C
//
|
|
// SVGCircleElement.h
|
|
// SVGKit
|
|
//
|
|
// Copyright Matt Rajca 2010-2011. All rights reserved.
|
|
//
|
|
|
|
#import "SVGEllipseElement.h"
|
|
|
|
@interface SVGCircleElement : SVGEllipseElement { }
|
|
|
|
@property (nonatomic, readonly) CGFloat r;
|
|
|
|
@end
|