dot - dot product
f = v.dot(v2);
v2 - vector
f - floating point number
Performs dot product between 'v' and given parameter 'v2' and returns the result. The operation has no impact to the object itself
v = new r3Vect(1, 0, 0);