/clases/trnsf/ init checkpoint 0 checkpoint 1 checkpoint 2
xxxxxxxxxx
1
// Author: Sol Sarratea @solquemal
2
  // Title: Fundamentales - Transformaciones en el espacio
3
4
precision mediump float;
5
uniform float u_time;
6
uniform vec2 u_resolution;
7
vec2 uv(){
8
    /* Devuelve las posiciones del canvas en rango [-1.,1.]x[-1.,1.] */
9
    vec2 pos = gl_FragCoord.xy/u_resolution; 
10
    pos.x *= u_resolution.y/u_resolution.x;
11
    pos = pos *2.-1.;
12
    return pos;
13
}
14
15
vec2 uvN(){
16
    /* Devuelve las posiciones del canvas en rango [0.,1.]x[0.,1.] */
17
    vec2 pos = gl_FragCoord.xy/u_resolution; 
18
    pos.x *= u_resolution.y/u_resolution.x;  
19
    return pos;
20
}
21
22
vec2 polares(){
23
    /* Devuelve las posiciones del canvas en rango [0,√2]x[-PI.,PI.] */
24
    vec2 pos = uv();
25
    float radio = length(pos); float angulo = atan(pos.y,pos.x);
26
    return vec2(radio,angulo);
27
}
28
29
vec2 rotacion (vec2 pos, float cantidad){
30
      return  pos * mat2(cos(cantidad),sin(cantidad),-sin(cantidad),cos(cantidad));
31
}
32
33
void main() {
34
    vec2 pos = uv(); vec3 color;
35
    
36
    gl_FragColor = vec4(color, 1.); 
37
38
}
39
40