cf_sphere_to_b3¶
Category: physics
GitHub: cute_physics.h
Converts a CF_Sphere to a b3Sphere (bit-identical).
b3Sphere cf_sphere_to_b3(CF_Sphere sphere) { b3Sphere out; out.center = cf_v3_to_b3(sphere.p); out.radius = sphere.r; return out; }
Category: physics
GitHub: cute_physics.h
Converts a CF_Sphere to a b3Sphere (bit-identical).
b3Sphere cf_sphere_to_b3(CF_Sphere sphere) { b3Sphere out; out.center = cf_v3_to_b3(sphere.p); out.radius = sphere.r; return out; }