simple-rigid-sim/src/Vector.cpp

8 lines
104 B
C++

#include "Vector.h"
Vector::Vector(float x, float y) {
this->x=x;
this->y=y;
}
Vector::Vector() {}