PDA

View Full Version : Bit-101 3/31/03 Expiriment



nobody
March 30th, 2003, 10:21 PM
Have you guys seen bits expirement for the 31st?
If you dont know the link, its bit-101.com
the expiriments are under laboratory

today's is so amazing.. definately one of my favorites of his
im in love with it

ahmed
March 30th, 2003, 10:35 PM
thats cool! very brilliant :)

Mik3
March 30th, 2003, 10:40 PM
OMG! thats amazing, zoom in and it looks like a satalite moving over the un-crowqded streets of a desert

Jubba
March 31st, 2003, 09:50 AM
wow. Bit is crazy. I need to start learning more drawing API...

andr.in
March 31st, 2003, 10:56 AM
omg man! How does he make the camer move? how the he..... omg!

pom
March 31st, 2003, 12:42 PM
Now that is crazy. I've done almost the same thing (not as good) for the contest :crazy:
//pom 31/03/2003
d=1;
l=2;
df=3;
maxAngle=120;
nRoot=8;
function growRoot (x,y,ang,size,maxLength) {
var mc=_root.createEmptyMovieClip("r",d++);
mc.lineStyle(size,0,100);
mc.moveTo(x,y);
mc.old_x = x;
mc.old_y = y;
mc.count=0;
mc.onEnterFrame=function(){
if (this.count < maxLength){
var next_x = this.old_x + l*Math.cos(ang*Math.PI/180) + df*(Math.random()-.5);
var next_y = this.old_y + l*Math.sin(ang*Math.PI/180) + df*(Math.random()-.5);
this.lineTo(next_x,next_y);
this.old_x = next_x;
this.old_y = next_y;
this.count++;
if (Math.random() > .96 && size) growRoot(next_x,next_y,ang+random(maxAngle)-maxAngle/2,size-1,maxLength/2);
}
else delete this.onEnterFrame;
}
}
for (var n=0;n < nRoot;n++) growRoot(Stage.width/2,Stage.height/2,360*n/nRoot,4,120);The link's here: http://www.bit-101.com/forum/viewtopic.php?t=1172&start=45

I guess he was inspired by the lightining thread too... :love:

pom
March 31st, 2003, 12:48 PM
And for those who are wondering what file he's talking about, it's this one: http://levitated.net/daily/levMainVein.html
One of the most amazing pieces of Flash I've ever seen (and it's Flash 5...).

johnBlaze
March 31st, 2003, 12:50 PM
Originally posted by ilyaslamasse
And for those who are wondering what file he's talking about, it's this one: http://levitated.net/daily/levMainVein.html
One of the most amazing pieces of Flash I've ever seen (and it's Flash 5...).

whoa.......that is so bada**. that's amazing.

bit-101
March 31st, 2003, 01:48 PM
march 31 was just an extension of march 30th (which i personally like better). about half way through i realized i had pretty much recreated levitated's vein. as far as the panning, i just keep track of the 6 active branches (it maxes out at 6) and average them and ease the whole enclosing movie clip to that point.

Jubba
March 31st, 2003, 02:05 PM
you make it sound so easy :P