-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanimation.js
executable file
·68 lines (57 loc) · 2.33 KB
/
animation.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import * as Dynamics from './dynamics.js';
import * as Geometry from './geometry.js';
import * as Simulation from './simulate.js';
import Vector from './vector.js';
export class Animation {
constructor(canvas) {
this.canvas = canvas;
this.ctx = canvas.getContext('2d');
this.world = new Simulation.World(this.ctx, true);
this.world.addBody(new Dynamics.StaticBody(
new Vector(canvas.width/2, 0),
new Geometry.Box(canvas.width, 1, new Vector(0, 0))
));
this.world.addBody(new Dynamics.StaticBody(
new Vector(canvas.width/2, canvas.height),
new Geometry.Box(canvas.width, 1, new Vector(0, 0))
));
this.world.addBody(new Dynamics.StaticBody(
new Vector(0, canvas.height/2),
new Geometry.Box(1, canvas.height, new Vector(0, 0))
));
this.world.addBody(new Dynamics.StaticBody(
new Vector(canvas.width, canvas.height/2),
new Geometry.Box(1, canvas.height, new Vector(0, 0))
));
this.world.addBody(new Dynamics.DynamicBody(
new Vector(canvas.width/2, canvas.height/2),
new Vector(0, 100),
new Geometry.Circle(100),
new Dynamics.Material(1)
));
for(var i = 0; i < 50; i++) {
const d = Math.min(canvas.width, canvas.height)/2;
const [dx, dy] = [Math.random()*2*d-d, Math.random()*2*d-d];
const v = 100;
const [vx, vy] = [Math.random()*2*v-v, Math.random()*2*v-v];
const s = 25 + Math.random() * 25;
this.world.addBody(new Dynamics.DynamicBody(
new Vector(canvas.width/2 + dx, canvas.height/2 + dy),
new Vector(vx, vy),
Math.random()*2 > 1 ? new Geometry.Circle(s) : new Geometry.Box(s),
new Dynamics.Material(1)
));
}
}
update(t) {
if (t == undefined) t = performance.now();
t /= 1000; // scale time to seconds
this.ctx.clearRect(0, 0, this.canvas.width, this.canvas.height);
this.world.update(t);
this.world.render(t);
}
run(t) {
this.update(t);
requestAnimationFrame(t => this.run(t));
}
}