1/2
1/2
13
13
February 17, 2009at7:05 pm web, No Comment
55
55
377
377

http://twitter.com/simppafi

Like everyone else, seems..

21
21

What do you think of this?

1/2
1/2
13
13
February 16, 2009at9:06 pm AS3.0, evo3d, Experimentals, flash, No Comment
55
55
377
377

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.

21
21

What do you think of this?

1/2
1/2
13
13
February 8, 2009at8:43 pm AS3.0, evo3d, Experimentals, flash, 1 Comment
55
55
377
377

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…

21
21

What do you think of this? (1)