cf_add¶ Category: math GitHub: cute_math.h Adds two 2D vectors component-wise. CF_V2 cf_add(CF_V2 a, CF_V2 b) { return cf_v2(a.x + b.x, a.y + b.y); } Related Pages¶ cf_sub cf_mul cf_div cf_dot cf_length