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.
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