-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparticle.js
53 lines (47 loc) · 1020 Bytes
/
particle.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
class Particle {
constructor(x, y, hu, firework) {
this.pos = createVector(x, y);
this.firework = firework;
this.lifespan = 255;
this.hu = hu;
this.hy = random(255)
this.hi = random(255)
this.acc = createVector(0, 0);
if (this.firework) {
this.vel = createVector(0, random(-12, -8));
} else {
this.vel = p5.Vector.random2D();
this.vel.mult(random(2, 10));
}
}
applyForce(force) {
this.acc.add(force);
}
update() {
if (!this.firework) {
this.vel.mult(0.9);
this.lifespan -= 4;
}
this.vel.add(this.acc);
this.pos.add(this.vel);
this.acc.mult(0);
}
done() {
if (this.lifespan < 0) {
return true;
} else {
return false;
}
}
show() {
colorMode(HSB);
if (!this.firework) {
strokeWeight(6);
stroke(this.hu, this.hy, this.hi, this.lifespan);
} else {
strokeWeight(8);
stroke(this.hu, this.hy, this.hi);
}
point(this.pos.x, this.pos.y);
}
}