Loading...
Searching...
No Matches
NCPolyline.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import "NCPoint.h"
3#import <Foundation/Foundation.h>
4
16DEFAULT_EXPORT_ATTRIBUTE
17@interface NCPolyline : NSObject
18
22- (nonnull instancetype)initWithPoints:(nonnull NSArray<NCPoint *> *)points;
23
27+ (nonnull instancetype)polylineWithPoints:(nonnull NSArray<NCPoint *> *)points;
28
32@property (nonatomic, readonly, nonnull) NSArray<NCPoint *> * points;
33
34@end