Rectangle class

Dependents:   FollowMeBot FollowMeBot FollowMeBot3 FollowMeBot

Fork of Rectangle by Sensovery Company

Rectangle.h

Committer:
projetremote
Date:
2011-05-03
Revision:
0:19fca77774b6
Child:
1:d9c0709ba2ce

File content as of revision 0:19fca77774b6:

#include "mbed.h"

class Rectangle {
protected :
    int Origin[1];
    int End[1];
    int * back;


public :
    Rectangle(int x,int y, int x2, int y2, int color, int * back);

    bool is_touch(int x_touch, int y_touch);

    bool deplace(int x, int y);
    
    int getX1();
    
    int getX2();
    
    int getY1();
    
    int getY2();
    
    int * getBack();
};