cf_make_sphere¶ Category: math GitHub: cute_math3d.h Returns a sphere at p with radius r. CF_Sphere cf_make_sphere(CF_V3 p, float r) { CF_Sphere s; s.p = p; s.r = r; return s; } Related Pages¶ CF_Sphere cf_sphere_to_sphere cf_ray3_to_sphere