2025-10-09 16:48:46 +08:00

18 lines
387 B
Objective-C

//
// SVGLineElement.h
// SVGKit
//
// Copyright Matt Rajca 2010-2011. All rights reserved.
//
#import "BaseClassForAllSVGBasicShapes.h"
@interface SVGLineElement : BaseClassForAllSVGBasicShapes { }
@property (nonatomic, readonly) CGFloat x1;
@property (nonatomic, readonly) CGFloat y1;
@property (nonatomic, readonly) CGFloat x2;
@property (nonatomic, readonly) CGFloat y2;
@end