cf_v2_to_b2¶ Category: physics GitHub: cute_physics.h Converts a CF_V2 to a b2Vec2. b2Vec2 cf_v2_to_b2(CF_V2 v) { b2Vec2 out; out.x = v.x; out.y = v.y; return out; } Remarks¶ The two are bit-identical; this exists for call-site clarity. Related Pages¶ cf_b2_to_v2 cf_sincos_to_b2 cf_transform_to_b2