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.
Diff: Point.h
- Revision:
- 0:ded79d89abdf
- Child:
- 5:d7d16cb9c974
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Point.h Fri May 01 05:33:50 2015 +0000 @@ -0,0 +1,20 @@ +#ifndef POINT +#define POINT +class Point{ + + int offAngles [8]; + int positionRadian, positionHeight, positionDistance; + public : + Point (); + Point (int , int , int ); + int getArraySlice(void); + char getIdentifyingChar(void); + int getPositionDistance(void); + void moveUp(); + void moveDown(); + void rotateRight(); + void rotateLeft(); + void moveIn(); + void moveOut(); +}; +#endif \ No newline at end of file