cross method
Sets this vector to cross product of itself and v.
Implementation
Vector3 cross(Vector3 v, [w]) {
if (w != null) {
print('THREE.Vector3: .cross() now only accepts one argument. Use .crossVectors( a, b ) instead.');
return crossVectors(v, w);
}
return crossVectors(this, v);
}