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.
Point.h
- Committer:
- tyleralt
- Date:
- 2015-08-17
- Revision:
- 5:d7d16cb9c974
- Parent:
- 0:ded79d89abdf
File content as of revision 5:d7d16cb9c974:
#ifndef POINT #define POINT class Point{ int offAngles [8]; int positionRadian, positionHeight, positionDistance; public : Point (); Point (int , int , int ); int getArraySlice(void); int getDegree(void); char getIdentifyingChar(void); int getPositionDistance(void); void moveUp(); void moveDown(); void rotateRight(); void rotateLeft(); void moveIn(); void moveOut(); }; #endif