frag 0.1.6

A simple crate to do live shader coding and rendering shaders to video.
Documentation
1
2
3
float circle(vec2 uv, vec2 pos, float rad, float blur){
    return smoothstep(rad, rad - blur, length(uv - pos));
}