Loading...
Searching...
No Matches
NCCircleMapObject.h
Go to the documentation of this file.
1#import "NCAnimationType.h"
2#import "NCExport.h"
3#import "NCLocationPoint.h"
4#import "NCMapObject.h"
5#import <Foundation/Foundation.h>
6
7
21DEFAULT_EXPORT_ATTRIBUTE
23
31- (BOOL)setPosition:(nonnull NCLocationPoint *)point;
32
42- (BOOL)setPositionAnimated:(nonnull NCLocationPoint *)point
43 duration:(float)duration
44 type:(NCAnimationType)type;
45
56- (BOOL)setColor:(float)red
57 green:(float)green
58 blue:(float)blue
59 alpha:(float)alpha;
60
68- (BOOL)setRadius:(float)radius;
69
77- (BOOL)setCollisionEnabled:(BOOL)enabled;
78
87- (BOOL)setBuffer:(float)width
88 height:(float)height;
89
98- (BOOL)setOffset:(float)width
99 height:(float)height;
100
108- (BOOL)setPriority:(float)priority;
109
120- (BOOL)setOutlineColor:(float)red
121 green:(float)green
122 blue:(float)blue
123 alpha:(float)alpha;
124
132- (BOOL)setOutlineRadius:(float)radius;
133
141- (BOOL)setOutlineAlpha:(float)alpha;
142
143@end