pub unsafe fn perp_product(a_0: f64, a_1: f64, b_0: f64, b_1: f64) -> f64Expand description
2D vector double perp product function: a x b.
-
a_0,a_1the first vector values. -
b_0,b_1the second vector values. -
returns the 2D perp product of the vector double values.
ยงSafety
Requires SIMD Extensions SSE4.2 on the target processor.