* Calculates the cross product of the given vector with this instance. * * @param {Vector3} v - The vector to compute the cross product with. * @return {Vector3} The result of the cross product.
( v )
| 854 | * @return {Vector3} The result of the cross product. |
| 855 | */ |
| 856 | cross( v ) { |
| 857 | |
| 858 | return this.crossVectors( this, v ); |
| 859 | |
| 860 | } |
| 861 | |
| 862 | /** |
| 863 | * Calculates the cross product of the given vectors and stores the result |
no test coverage detected