Image library for all the graph. Just test
Image.h@0:da6e8a366665, 2019-03-31 (annotated)
- Committer:
- MYY
- Date:
- Sun Mar 31 18:40:48 2019 +0000
- Revision:
- 0:da6e8a366665
- Child:
- 1:298e74e9170b
Image contains the distribution of rock and gold in the first round.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
MYY | 0:da6e8a366665 | 1 | #ifndef Image_H |
MYY | 0:da6e8a366665 | 2 | #define Image_H |
MYY | 0:da6e8a366665 | 3 | #include "mbed.h" |
MYY | 0:da6e8a366665 | 4 | #include "N5110.h" |
MYY | 0:da6e8a366665 | 5 | #include <math.h> |
MYY | 0:da6e8a366665 | 6 | |
MYY | 0:da6e8a366665 | 7 | class N5110; |
MYY | 0:da6e8a366665 | 8 | |
MYY | 0:da6e8a366665 | 9 | class Image |
MYY | 0:da6e8a366665 | 10 | { |
MYY | 0:da6e8a366665 | 11 | public: |
MYY | 0:da6e8a366665 | 12 | Image(); |
MYY | 0:da6e8a366665 | 13 | ~Image(); |
MYY | 0:da6e8a366665 | 14 | // state 1 nuggets position |
MYY | 0:da6e8a366665 | 15 | void draw_1(N5110 &lcd); |
MYY | 0:da6e8a366665 | 16 | }; |
MYY | 0:da6e8a366665 | 17 | |
MYY | 0:da6e8a366665 | 18 | |
MYY | 0:da6e8a366665 | 19 | #endif |