Loading...
Searching...
No Matches
NCRouteOptions.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import <Foundation/Foundation.h>
3
26DEFAULT_EXPORT_ATTRIBUTE
27@interface NCRouteOptions : NSObject
28
32- (nonnull instancetype)initWithSmoothRadius:(double)smoothRadius
33 maxProjectionDistance:(double)maxProjectionDistance
34 maxAdvance:(double)maxAdvance;
35
39+ (nonnull instancetype)routeOptionsWithSmoothRadius:(double)smoothRadius
40 maxProjectionDistance:(double)maxProjectionDistance
41 maxAdvance:(double)maxAdvance;
42
46- (nonnull instancetype)init;
47
51+ (nonnull instancetype)routeOptions;
52
60@property (nonatomic, readonly) double smoothRadius;
61
68@property (nonatomic, readonly) double maxProjectionDistance;
69
76@property (nonatomic, readonly) double maxAdvance;
77
78@end