Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: 4DGL-uLCD-SE PinDetect mbed
Circle.h
00001 #ifndef CIRCLE_H 00002 #define CIRCLE_H 00003 00004 #include "Sprite.h" 00005 00006 class Circle : public Sprite { 00007 public: 00008 Circle(); 00009 void init(int x, int y, uLCD_4DGL *uLCD); 00010 void setRadius(int r); 00011 void drawCircle(int baseX, int baseY, int color); 00012 00013 protected: 00014 int _radius; 00015 }; 00016 00017 #endif
Generated on Sun Jul 17 2022 07:39:55 by
1.7.2