Raw_EEG_Plot
Last change
on this file since f323fb4 was
a9059a5,
checked in by Steve Castellotti <sc@…>, 9 years ago
|
Arduino:
- updated to permit custom setting of Throttle, Yaw, and Pitch
Android:
- Minor tweak to Configuration location
iOS:
|
-
Property mode set to
100644
|
File size:
556 bytes
|
Line | |
---|
1 | #import "CPTLayer.h" |
---|
2 | #import <Foundation/Foundation.h> |
---|
3 | |
---|
4 | @class CPTAxis; |
---|
5 | @class CPTLineStyle; |
---|
6 | |
---|
7 | @interface CPTAxisSet : CPTLayer { |
---|
8 | @private |
---|
9 | NSArray *axes; |
---|
10 | CPTLineStyle *borderLineStyle; |
---|
11 | } |
---|
12 | |
---|
13 | |
---|
14 | |
---|
15 | @property (nonatomic, readwrite, retain) NSArray *axes; |
---|
16 | |
---|
17 | |
---|
18 | |
---|
19 | |
---|
20 | @property (nonatomic, readwrite, copy) CPTLineStyle *borderLineStyle; |
---|
21 | |
---|
22 | |
---|
23 | |
---|
24 | |
---|
25 | -(void)relabelAxes; |
---|
26 | |
---|
27 | |
---|
28 | |
---|
29 | |
---|
30 | -(CPTAxis *)axisForCoordinate:(CPTCoordinate)coordinate atIndex:(NSUInteger)idx; |
---|
31 | |
---|
32 | |
---|
33 | @end |
---|
Note: See
TracBrowser
for help on using the repository browser.