Add v scaled by s thos this vector
v
s
Vec3 addScaledVector (Vec3 v,double s ) { x += v.x * s; y += v.y * s; z += v.z * s; return this; }