Adds the multiple of v and s to this vector.
Vector3 addScaledVector(Vector3 v, double s) { x += v.x * s; y += v.y * s; z += v.z * s; return this; }