rms/resources/shaders/objects/sphere.frag

7 lines
199 B
GLSL
Raw Normal View History

2020-07-09 13:02:31 +02:00
/**
* Compute the Signed Distance Function (SDF)
* of a sphere.
*/
float SphereSDF(vec3 ray_position, vec3 sphere_position, float radius){
return(length(ray_position - sphere_position)-radius);
}