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