blob: bd9e9c660d2df79ba98f338f047aa92ed9650f97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
( function() {
function Particle( x, y ) {
this.x = x;
this.y = y;
this.velocity = 0;
this.accel = 0;
this.friction = 0.01;
}
Particle.prototype.update = function() {
this.velocity += this.accel;
this.velocity *= ( 1 - this.friction );
this.x += this.velocity;
this.accel = 0;
};
Particle.prototype.applyForce = function( force ) {
this.accel += force;
};
window.Particle = Particle;
})();
|