mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-06 07:06:11 +00:00
25 lines
857 B
Objective-C
25 lines
857 B
Objective-C
|
|
#import "RNSVGGroup.h"
|
|
#import "RNSVGLength.h"
|
|
#import "RNSVGMarkerPosition.h"
|
|
|
|
@interface RNSVGMarker : RNSVGGroup
|
|
|
|
@property (nonatomic, strong) RNSVGLength *refX;
|
|
@property (nonatomic, strong) RNSVGLength *refY;
|
|
@property (nonatomic, strong) RNSVGLength *markerWidth;
|
|
@property (nonatomic, strong) RNSVGLength *markerHeight;
|
|
@property (nonatomic, strong) NSString *markerUnits;
|
|
@property (nonatomic, strong) NSString *orient;
|
|
|
|
@property (nonatomic, assign) CGFloat minX;
|
|
@property (nonatomic, assign) CGFloat minY;
|
|
@property (nonatomic, assign) CGFloat vbWidth;
|
|
@property (nonatomic, assign) CGFloat vbHeight;
|
|
@property (nonatomic, strong) NSString *align;
|
|
@property (nonatomic, assign) RNSVGVBMOS meetOrSlice;
|
|
|
|
- (void)renderMarker:(CGContextRef)context rect:(CGRect)rect position:(RNSVGMarkerPosition*)position strokeWidth:(CGFloat)strokeWidth;
|
|
|
|
@end
|