Project Submission (late)

Dependencies:   mbed

Vector2Di/Vector2Di.h

Committer:
el17tc
Date:
2019-05-10
Revision:
0:72f372170a73
Child:
3:83e79d31930c

File content as of revision 0:72f372170a73:

#ifndef VECTOR2DI_H
#define VECTOR2DI_H

#include <math.h> 
#define PI 3.14159265358979323846

class Vector2Di {
    
    public:
    
        int x;
        int y;  
        Vector2Di operator -();
        void addVector(Vector2Di v);
        void rotateVector(double angle);
    
};

#endif