/rumbo/julia/ init checkpoint 0 checkpoint 1 bonus
xxxxxxxxxx
1
// Author: Sol Sarratea @solquemal
2
// Title: Julia 0
3
//Numeros Complejos
4
precision mediump float;
5
6
uniform float u_time;
7
uniform vec2 u_resolution;
8
9
// Multilicacion de vectores : 
10
// sean a,b vectores de 2 componentes se los puede pensar como numeros complejos. Luego:
11
// a = ax + ay i, donde `ax` es la parte real y `ay` la parte imaginaria
12
// b = bx + by i, donde `bx` es la parte real y `by` la parte imaginaria
13
14
// La multiplicacion queda definida como : 
15
// a * b = (ax * bx - ay * bx) + ( ax * by + ay * bx ) i          
16
17
vec2 multC(vec2 a, vec2 b){
18
    float re = a.x*b.x - a.y*b.y;
19
    float im = a.x*b.y + a.y*b.x;
20
    return vec2(re,im);
21
}
22
23
vec2 uv(){
24
    /* Devuelve las posiciones del canvas en rango [-1.,1.]x[-1.,1.] */
25
    vec2 pos = gl_FragCoord.xy/u_resolution;
26
    pos = pos *2.-1.;
27
    return pos;
28
}
29
30
31
void main() {
32
    vec3 color;
33
    vec2 pos = uv()*1.5;
34
    
35
    for (int i = 0; i < 100; i++) {
36
        //Iteramos la  funcion: f(z) = z * z ;
37
        pos = multC(pos,pos);
38
        
39
        //Si ademas trasladamos, observar como cambia: 
40
        //pos.x -= 0.7;
41
        //pos.y -= 0.27;
42
        
43
        //Coloreamos a cada iteracion
44
        color.rb += sin(pos*10.) * float(i);        
45
        
46
    }
47
48
    gl_FragColor = vec4(color,1.);
49
50
}
51
52