What do you think of this?

Laboratory output n°51 evo3D TE5 RabbitHole

evo3D TE5 RabbitHole
You need latest flash player to view these. (installation)

Be carefully with this one, especially if have epilepsy. Otherwise press a key and enter full screen.
The texture pattern is changing all the time so you should see more and more crazy forms when time pass.

What do you think of this?

Laboratory output n°50 evo3D TE4 WormHole

evo3D TE4 WormHole
You need latest flash player to view these. (installation)

Ulala here comes number 50! I have a new toy, a cylinder and that of course means wormholes. The texture is calculated real time by algorithm that draws a line of 128×1 into texture and then scroll it, like this:

var fo:Number = time/100;
var h:int = texture.height1;
l = 128
for(i = 0; i < l; i++)
{
        dx = (i + (10 + 10*Math.sin(time/100)) + (10 + 10*Math.sin(time/230))) % 128;
       
        r = 128 + 127 * Math.cos(i/10) + fo << 16;
        g = 128 + 127 * Math.cos(i/20) + fo << 8;
        b = 128 + 127 * Math.cos(i/30) + fo;
                           
        color = r | g | b;
       
        texture.setPixel(dx, h, color);
}
texture.scroll(0,-1);

Next it should bend…

What do you think of this? (1)