Forked from: rigard's forked from: Crappy physics... go on, improve it! .. diff:1 forked from: forked from: Crappy physics... go on, improve it! :D fishKing forked:3favorite:3lines:103license : All rights reserved modified : 2009-11-23 16:42:00 Embed Tweet // forked from rigard's forked from: Crappy physics... go on, improve it! :D // forked from mrdoob's Crappy physics... go on, improve it! :D package { import flash.display.Sprite; import flash.events.Event; public class Particles extends Sprite { public var stageWidth : int = stage.stageWidth - 8; public var stageHeight : int = stage.stageHeight - 8; private var particles : Array = new Array; private var particles_count : int = 100; public function Particles() { addEventListener( Event.ADDED_TO_STAGE, init ); } private function init( e : Event ) : void { removeEventListener( Event.ADDED_TO_STAGE, init ); for (var i : int = 0; i < particles_count; i++) { particles[i] = new Particle; particles[i].x = Math.random() * stageWidth; particles[i].y = Math.random() * stageHeight; particles[i].vx = Math.random() * 20 - 10; particles[i].vy = Math.random() * 20 - 10; addChild( particles[i] ); } addEventListener(Event.ENTER_FRAME, loop); } private function loop( e : Event ) : void { var distance : Object = {x:0, y:0}; var impact : Object = {x:0, y:0}; var impulse : Object = {x:0, y:0}; var impulseHalf : Object = {x:0, y:0}; var gravity : Object = {x: (mouseX - (stageWidth >> 1)) / stageWidth, y: (mouseY - (stageHeight >> 1)) / stageHeight }; for ( var i : int = 0; i < particles_count; i++) { var particle : Particle = particles[i]; for( var j : int = 0; j < particles_count; j++) { var particle2 : Particle = particles[j]; if (particle2 == particle) continue; distance.x = particle.x - particle2.x; distance.y = particle.y - particle2.y; var length : Number = Math.sqrt(distance.x * distance.x + distance.y * distance.y); particle2.width = 32 - length; particle2.height = 32 - length; if (length < 16) { impact.x = particle2.vx - particle.vx; //) * particle.restitution; impact.y = particle2.vy - particle.vy; //) * particle.restitution; impulse.x = particle2.x - particle.x; impulse.y = particle2.y - particle.y; var mag : Number = Math.sqrt(impulse.x * impulse.x + impulse.y * impulse.y); if (mag > 0) { mag = 1 / mag; impulse.x *= mag; impulse.y *= mag; } impulseHalf.x = impulse.x * .5; impulseHalf.y = impulse.y * .5; particle.x -= impulseHalf.x; particle.y -= impulseHalf.y; particle2.x += impulseHalf.x; particle2.y += impulseHalf.y; var dot : Number = impact.x * impulse.x + impact.y * impulse.y; impulse.x *= dot; impulse.y *= dot; particle.vx += impulse.x * .9; // * particle.restitution; particle.vy += impulse.y * .9; // * particle.restitution; particle2.vx -= impulse.x * .9; //particle.restitution; particle2.vy -= impulse.y * .9; //particle.restitution; } } particle.x += particle.vx += gravity.x; particle.y += particle.vy += gravity.y; if (particle.y < 8 || particle.y > stageHeight) { particle.vy *= -.8; particle.vx *= .98; } particle.y = (particle.y < 8) ? 8 : (particle.y > stageHeight) ? stageHeight : particle.y; if (particle.x < 8 || particle.x > stageWidth) particle.vx *= -.8; particle.x = (particle.x < 8) ? 8 : (particle.x > stageWidth) ? stageWidth : particle.x; } } } } import flash.display.Sprite; class Particle extends Sprite { public var vx : Number = 0; public var vy : Number = 0; public function Particle() { graphics.beginFill((Math.random() * 0xff) << 16); graphics.drawRect(-6, -6, 12, 12); graphics.endFill(); } } Code Fullscreen Preview Fullscreen thumb_bolt_o.. tan_go238 Giggle : particlephysics particle physics sort new page view favorite forked pv97 forked from: forked from: fork.. hasandurmaz44 forked:0 favorite:0lines:103 (diff:5) pv576 forked from: forked from: fork.. tan_go238 forked:3 favorite:4lines:103 (diff:3) tag: circle particle physical pv617 forked from: forked from: fork.. fishKing forked:1 favorite:0lines:103 (diff:2)