rms/resources/shaders/objects/sphere.frag
2020-07-09 13:02:31 +02:00

7 lines
No EOL
199 B
GLSL

/**
* 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);
}