cf_dot¶ Category: math GitHub: cute_math.h Returns the dot product of two vectors. float cf_dot(CF_V2 a, CF_V2 b) { return a.x * b.x + a.y * b.y; } Related Pages¶ CF_V2 cf_add cf_sub cf_div_v2_f cf_mul_v2_f