cf_mul_m2¶
Category: math
GitHub: cute_math.h
Composes two 2x2 matrices, returning the matrix equivalent to applying b then a.
CF_M2x2 cf_mul_m2(CF_M2x2 a, CF_M2x2 b) { CF_M2x2 c; c.x = cf_mul_m2_v2(a, b.x); c.y = cf_mul_m2_v2(a, b.y); return c; }