add vector a to vector b
a
b
Vec3 addVectors (Vec3 a,Vec3 b ) { x = a.x + b.x; y = a.y + b.y; z = a.z + b.z; return this; }