2012-02-05 111 views
7

我意識到這是一個數學爲中心的問題,但...如果你看看這個網頁(並有很好的顯卡)http://mrdoob.github.com/three.js/examples/webgl_shader.html任何人都可以解釋這個GLSL片段着色器在做什麼?

如果你看看源代碼,你會發現一個可怕看片段着色器。

我不是尋找一個詳細的解釋,但這種東西是怎麼回事,或者對究竟這裏發生的一切信息來源的想法..我不是一個指導GLSL後,但信息在數學上。我意識到這可能是更適合數學StackExchange的網站,但想我會嘗試先在這裏......

<script id="fragmentShader" type="x-shader/x-fragment"> 

      uniform vec2 resolution; 
      uniform float time; 

      void main() { 

       vec2 p = -1.0 + 2.0 * gl_FragCoord.xy/resolution.xy; 
       float a = time*40.0; 
       float d,e,f,g=1.0/40.0,h,i,r,q; 
       e=400.0*(p.x*0.5+0.5); 
       f=400.0*(p.y*0.5+0.5); 
       i=200.0+sin(e*g+a/150.0)*20.0; 
       d=200.0+cos(f*g/2.0)*18.0+cos(e*g)*7.0; 
       r=sqrt(pow(i-e,2.0)+pow(d-f,2.0)); 
       q=f/r; 
       e=(r*cos(q))-a/2.0;f=(r*sin(q))-a/2.0; 
       d=sin(e*g)*176.0+sin(e*g)*164.0+r; 
       h=((f+d)+a/2.0)*g; 
       i=cos(h+r*p.x/1.3)*(e+e+a)+cos(q*g*6.0)*(r+h/3.0); 
       h=sin(f*g)*144.0-sin(e*g)*212.0*p.x; 
       h=(h+(f-e)*q+sin(r-(a+h)/7.0)*10.0+i/4.0)*g; 
       i+=cos(h*2.3*sin(a/350.0-q))*184.0*sin(q-(r*4.3+a/12.0)*g)+tan(r*g+h)*184.0*cos(r*g+h); 
       i=mod(i/5.6,256.0)/64.0; 
       if(i<0.0) i+=4.0; 
       if(i>=2.0) i=4.0-i; 
       d=r/350.0; 
       d+=sin(d*d*8.0)*0.52; 
       f=(sin(a*g)+1.0)/2.0; 
       gl_FragColor=vec4(vec3(f*i/1.6,i/2.0+d/13.0,i)*d*p.x+vec3(i/1.3+d/8.0,i/2.0+d/18.0,i)*d*(1.0-p.x),1.0); 

      } 

     </script> 
+1

還有http://glsl.heroku.com/e由mr.doob編寫。這裏的代碼粘貼在http://glsl.heroku.com/e#1579.0 – gman 2012-02-07 05:54:45

回答

20

Monjori從演示現場。

簡單的答案是它使用一個公式來生成一個模式。 WebGL將爲屏幕上的每個像素調用一次該函數。唯一會改變的是時間和gl_FragCoord,它是被繪製像素的位置。

讓我們打破它一點

的這是很好的嘗試,看看發生了什麼事情
// this is the resolution of the window 
    uniform vec2 resolution; 

    // this is a count in seconds. 
    uniform float time; 

    void main() { 
     // gl_FragCoord is the position of the pixel being drawn 
     // so this code makes p a value that goes from -1 to +1 
     // x and y 
     vec2 p = -1.0 + 2.0 * gl_FragCoord.xy/resolution.xy; 

     // a = the time speed up by 40 
     float a = time*40.0; 

     // declare a bunch of variables. 
     float d,e,f,g=1.0/40.0,h,i,r,q; 

     // e goes from 0 to 400 across the screen 
     e=400.0*(p.x*0.5+0.5); 

     // f goes from 0 to 400 down the screen 
     f=400.0*(p.y*0.5+0.5); 

     // i goes from 200 + or - 20 based 
     // on the sin of e * 1/40th + the slowed down time/150 
     // or in other words slow down even more. 
     // e * 1/40 means e goes from 0 to 1 
     i=200.0+sin(e*g+a/150.0)*20.0; 

     // d is 200 + or - 18.0 + or - 7 
     // the first +/- is cos of 0.0 to 0.5 down the screen 
     // the second +/i is cos of 0.0 to 1.0 across the screen 
     d=200.0+cos(f*g/2.0)*18.0+cos(e*g)*7.0; 

     // I'm stopping here. You can probably figure out the rest 
     // see answer 
     r=sqrt(pow(i-e,2.0)+pow(d-f,2.0)); 
     q=f/r; 
     e=(r*cos(q))-a/2.0;f=(r*sin(q))-a/2.0; 
     d=sin(e*g)*176.0+sin(e*g)*164.0+r; 
     h=((f+d)+a/2.0)*g; 
     i=cos(h+r*p.x/1.3)*(e+e+a)+cos(q*g*6.0)*(r+h/3.0); 
     h=sin(f*g)*144.0-sin(e*g)*212.0*p.x; 
     h=(h+(f-e)*q+sin(r-(a+h)/7.0)*10.0+i/4.0)*g; 
     i+=cos(h*2.3*sin(a/350.0-q))*184.0*sin(q-(r*4.3+a/12.0)*g)+tan(r*g+h)*184.0*cos(r*g+h); 
     i=mod(i/5.6,256.0)/64.0; 
     if(i<0.0) i+=4.0; 
     if(i>=2.0) i=4.0-i; 
     d=r/350.0; 
     d+=sin(d*d*8.0)*0.52; 
     f=(sin(a*g)+1.0)/2.0; 
     gl_FragColor=vec4(vec3(f*i/1.6,i/2.0+d/13.0,i)*d*p.x+vec3(i/1.3+d/8.0,i/2.0+d/18.0,i)*d*(1.0-p.x),1.0); 
} 

一是在着色器插入早退出。首先,你可以在這裏看到着色器

http://glsl.heroku.com/e#1579.0

https://www.shadertoy.com/view/lsfyRS

如果我們去排隊11

 e=400.0*(p.x*0.5+0.5); 

,只是它是這樣的

後插入
 e=400.0*(p.x*0.5+0.5); 
     gl_FragColor = vec4(e/400.0, 0, 0, 1); 
     return; 

只要我們的價值轉換的東西從0到1,我們可以看到結果

例如下降至第14行

d=200.0+cos(f*g/2.0)*18.0+cos(e*g)*7.0; 

因爲我們知道它從200 +/- 18被+/- 7即175 + 225,因此可以將其轉換爲0到1

d=200.0+cos(f*g/2.0)*18.0+cos(e*g)*7.0; 
    float tmp = (d - 175.0)/50.0; 
    gl_FragColor = vec4(tmp, 0, 0, 1); 
    return; 

會給你一些想法它在做什麼。

我相信你可以解決其餘問題。

+2

哇這是驚人的......感謝這個答案!我正在使用時間和p.x或p.y vars來調整這個着色器來控制形狀和顏色。如果可以的話,會給十+ 1 – Alex 2012-02-12 00:17:27

相關問題