cf_greater¶ Category: math GitHub: cute_math.h Returns true if a.x > b.x and a.y > b.y. int cf_greater(CF_V2 a, CF_V2 b) { return a.x > b.x && a.y > b.y; } Related Pages¶ CF_V2 cf_round cf_lesser cf_greater_equal cf_lesser_equal