dos_wedgeproduct - dalefugier/DOSLib GitHub Wiki
Calculates the wedge product, or the signed area of the parallelogram, of two 2D vectors.
Syntax
(dos_wedgeproduct vector1 vector2)
Parameters
vector1
The first vector.
vector2
The second vector.
Returns
The wedge product, if successful.
nil on error.
Example
Command: (dos_wedgeproduct '(5 0) '(3 2))
10