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.
Block.h
- Committer:
- tyleralt
- Date:
- 2015-05-01
- Revision:
- 1:bb1507f0bb64
- Child:
- 2:891b3618be4f
File content as of revision 1:bb1507f0bb64:
#ifndef BLOCK
#define BLOCK
class Point{
int x, y, z;
int size, height;
public :
getEuclidPoint
void moveUp();
void moveDown();
void rotateRight();
void rotateLeft();
void moveIn();
void moveOut();
};
#endif