algebra_3D.Vector.prod

Vector.prod()

Cross product self and vec.

Returns
double

The prod result

Examples

>>> v=Vector(0,0,0,1,2,1)
>>> w=Vector(0,0,0,3,1,2)
>>> print(v.prod(w))
 ( 3.0 , 1.0 , -5.0 )
printed