Luna::Simd::dot3_f4
f32 dot3_f4(float4 a, float4 b)
Computes the dot product on the first three elements of a
and b
, and stores the result in dst
.
dst := (a.x * b.x) + (a.y * b.y) + (a.z * b.z)
f32 dot3_f4(float4 a, float4 b)
Computes the dot product on the first three elements of a
and b
, and stores the result in dst
.
dst := (a.x * b.x) + (a.y * b.y) + (a.z * b.z)