cf_equal¶ Category: math GitHub: cute_math.h Returns true if two vectors are exactly equal. int cf_equal(CF_V2 a, CF_V2 b) { return a.x == b.x && a.y == b.y; } Related Pages¶ cf_greater_equal cf_lesser cf_greater cf_lesser_equal