cross

Method:

cross - cross product

Syntax:

v3 = v.cross(v2);

Parameters:

v2 - vector

Returns:

v3 - result vector

Description:

Computes cross product 'v x v2' and returns the resulting vector. The operation doesn't impact the object itself

Example:

v = new r3Vect(1, 0, 0);