orth - orthogonal projection
v3 = v.orth(v2);
v2 - vector
v3 - result vector
Orthogonal projection. The resulting 'v3' vector is perpendicular to 'v' and on the same plane as both 'v' and 'v2'.
v = new r3Vect(1, 0, 0);