cf_min_v2¶ Category: math GitHub: cute_math.h Returns the component-wise minimum of two vectors. CF_V2 cf_min_v2 (CF_V2 a, CF_V2 b) { return (CF_V2){ cf_min_f(a.x, b.x), cf_min_f(a.y, b.y) }; } Related Pages¶ cf_min cf_max_v2 cf_clamp_v2 cf_clamp01_v2 cf_abs_v2