Could somebody try to implement given animation into WebGL shader example? It would be great for people learing WebGL like myself.

alt text

Source: http://dvdp.tumblr.com/post/2664387637/110109

link|improve this question

75% accept rate
1  
Here are some HTML Canvas experiments in this direction to help you. The key is to work in polar coordinates: Spiral 1, Spiral 2, Spiral 3, Spiral 4. – Phrogz Jan 9 '11 at 18:55
And Spiral 5, slightly closer to this design. – Phrogz Jan 10 '11 at 3:38
2  
We expect you to have attempted to solve this problem by yourself rather than asking the community to arrive at a complete solution for you. When you've got some code to show us that demonstrates some effort by you (even if it's wrong) please update your question and flag to re-open. Thanks. – Kev Nov 8 '11 at 12:40
feedback

closed as not a real question by Kev Nov 8 '11 at 12:39

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

up vote 12 down vote accepted

I've implemented your animation at http://www.brainjam.ca/stackoverflow/webglspiral.html. It will give you a "WebGL not supported" message if your browser does not support WebGL. It is adapted from a sandbox created by mrdoob. The basic idea is to show a rectangular surface (consisting of two triangles) and to apply the shader to the surface.

The actual shader code is as follows:

uniform float time;
uniform vec2 resolution;
uniform vec2 aspect;

void main( void ) {

    vec2 position = -aspect.xy + 2.0 * gl_FragCoord.xy / resolution.xy * aspect.xy;
    float angle = 0.0 ;
    float radius = length(position) ;
    if (position.x != 0.0 && position.y != 0.0){
        angle = degrees(atan(position.y,position.x)) ;
    }
    float amod = mod(angle+30.0*time-120.0*log(radius), 30.0) ;
    if (amod<15.0){
        gl_FragColor = vec4( 0.0, 0.0, 0.0, 1.0 );
    } else{
        gl_FragColor = vec4( 1.0, 1.0, 1.0, 1.0 );                    
    }
}

The spiral resizes with the browser window, but you could easily opt for a fixed size canvas instead.

Update: Just for fun, here's the exact same implementation in a jsfiddle: http://jsfiddle.net/z9EmN/

link|improve this answer
Awesome :) thank you – zproxy Jan 20 '11 at 13:40
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.