klyn.math.geometry.Vector.cross
method
public cross(other as Vector<NUMBER>) as Double:
Description

Computes the two-dimensional cross product determinant.

Parameters
ParameterDescription
otherOther vector.
Returns

Scalar determinant as Double.

Example
area2 = Vector<Double>(1.0, 0.0).cross(Vector<Double>(0.0, 1.0))