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-05-01
- Revision:
- 0:ded79d89abdf
- Child:
- 5:d7d16cb9c974
File content as of revision 0:ded79d89abdf:
#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