demotool/map.glsl

5 lines
66 B
Text
Raw Normal View History

2017-09-30 11:23:14 +02:00
vec2 map( vec3 pos )
{
return vec2( length( pos ) - 1. , 0. );
}