Add a to this vector
if b is provided add a+b
b
Vec3 add (Vec3 a,[Vec3? b ]) { if ( b != null ) return addVectors( a, b ); x += a.x; y += a.y; z += a.z; return this; }