cmp - compare
b = v.cmp(v2);
v2 - vector
b - boolean, true if vectors are identical
Compare the given vector 'v2' agains the vector in question and return true if the vectors are identical. Otherwise returns false.
v = new r3Vect(1, 1, 1);