crossProduct

public static double crossProduct(Vector one, Vector two)

This computes the first Vector crossed with the second Vector, so a cross product. Do note that order matters here.

Return

returns the cross product of the two Vectors.

Parameters

one

the first Vector.

two

the second Vector.