demotool/map.glsl

7 lines
116 B
Text
Raw Normal View History

2017-09-30 11:23:14 +02:00
vec2 map( vec3 pos )
{
2017-09-30 12:08:18 +02:00
vec3 q = pos;
q.xy = mod( q.xy + 2. , 4. ) - 2.;
return vec2( length( q ) - 2.1 , 0. );
2017-09-30 11:23:14 +02:00
}