namespace PROBLEMA_PABLO_07
static void main(string[] args)
vector2 A, B, suma, resta, produnto;
A = new vector2(); A.x = 4.2f; A.y = -3.1f;
B = new vector2(); B.x = -0.2f B.y = 5.1f;
producto = prductorEsc(A, Escalar);
static vector2 suma(vector2 A, vector2 B)
vector2 res = new vector2();
static vector2 resta(vector2 A, vector2 B)
vector2 res = new vector2();
static vector2 productorEsc(vector2 A, float B)
vector2 res = new vector2();