Vector4 addScaledVector(Vector4 v, num s) { x += v.x * s; y += v.y * s; z += v.z * s; w += v.w * s; return this; }