Welcome to mirror list, hosted at ThFree Co, Russian Federation.

third.md « blog « content « examplesite - github.com/gurusabarish/hugo-profile.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a0cb9befddc7be196a179334071a20263476eae4 (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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
---
title: "Making a Verlet Physics Engine in Javascript"
date: 2020-08-14T13:22:10+05:30
draft: false
subtitle: "Javascript"
author: "Gurusabarish"
github_link: "https://github.com/gurusabarish/Hugo-blog"
tags:
  - markdown
  - css
  - blog
bg_image: "/images/bg-image-3.jpg"
description: "Making a Verlet Physics Engine in Javascript"
---

Have you ever wondered if you can make your own physics engine in JavaScript? If so, you have come to the right place. We are going to build a Physics engine from scratch in JavaScript.

Before we start, I should mention that this tutorial assumes you have a good understanding of Vectors.
Don’t worry if you do not yet have this understanding — Vectors are simple: get the Vector.js.

## What Is Verlet Physics?

According to Wikipedia:

> Verlet integration is a numerical method used to integrate Newton’s equations of motion. It is frequently used to calculate trajectories of particles in molecular dynamics simulations and computer graphics. The algorithm was first used in 1791 by Delambre and has been rediscovered many times since then, most recently by Loup Verlet in the 1960s for use in molecular dynamics.
In simple terms, Verlet physics is just a system of connected dots.

### In a Verlet system, we have 2 main components:

1. Points (dots)
2. Constraints (sticks)

![A Box. Connected With Dots And Sticks](./images/verlet_box.png)

## Dots

The dots have basic physics applied to them.
We have to keep track of the dots’ current and old positions to add the physics behavior to them — you'll see this when we implement it.

```js {4-5}
// Dot.js
class Dot {
  constructor(x, y) {
    this.pos = new Vector(x, y)
    this.oldpos = new Vector(x, y)
    this.friction = 0.97
    this.groundFriction = 0.7
    this.gravity = new Vector(0, 1)
    this.radius = 5
    this.color = "#e62a4f"
    this.mass = 1
  }
}
```

We have the basic setup, now let's render the dots and make them move.

```js {3,12-13}
// Dot.js
update() {
  let vel = Vector.sub(this.pos, this.oldpos);
  vel.mult(this.friction);
  // if the point touches the ground set groundFriction
  if (this.pos.y >= CANVAS_HEIGHT - this.radius && vel.magSq() > 0.000001) {
    var m = vel.mag();
    vel.x /= m;
    vel.y /= m;
    vel.mult(m * this.groundFriction);
  }
  this.oldpos.setXY(this.pos.x, this.pos.y);
  this.pos.add(vel);
  this.pos.add(this.gravity);
}
```

The update function will update the position and handle the physics of the dot.

To do Verlet integration, we have to calculate velocity based on dots old position.

In the first line, we are **subtracting the current position from the old position to get the desired velocity.** After calculating the velocity, we apply friction to the dots, so they come to rest instead of sliding forever.

Then, we update the old position by saying `this.oldpos.setXY(this.pos.x, this.pos.y)` and add the velocity and gravity to the position.

We also want to make them stay inside the canvas, so we have to add some checks. We will also add another function: `constrain()`:

```js
// Dot.js
constrain() {
  if (this.pos.x > CANVAS_WIDTH - this.radius) {
    this.pos.x = CANVAS_WIDTH - this.radius;
  }
  if (this.pos.x < this.radius) {
    this.pos.x = this.radius;
  }
  if (this.pos.y > CANVAS_HEIGHT - this.radius) {
    this.pos.y = CANVAS_HEIGHT - this.radius;
  }
  if (this.pos.y < this.radius) {
    this.pos.y = this.radius;
  }
};
```

Let’s add the render method too:

```js
// Dot.js
render() {
  ctx.beginPath();
  ctx.fillStyle = this.color;
  ctx.arc(this.pos.x, this.pos.y, this.radius, 0, Math.PI * 2);
  ctx.fill();
  ctx.closePath();
}
```

Setting up:

```js {13,20-24}
// index.js | setup
let canvas = document.getElementById("c")
let ctx = canvas.getContext("2d")
let CANVAS_WIDTH = window.innerWidth
let CANVAS_HEIGHT = window.innerHeight
canvas.width = CANVAS_WIDTH
canvas.height = CANVAS_HEIGHT
let dots = []
for (let i = 0; i < 50; i++) {
  dots.push(
    new Dot(Math.random() * CANVAS_WIDTH, Math.random() * CANVAS_HEIGHT)
  )
}
function animate() {
  ctx.clearRect(0, 0, CANVAS_WIDTH, CANVAS_HEIGHT)
  for (let d of dots) {
    d.update()
    d.constrain()
    d.render(ctx)
  }
  requestAnimationFrame(animate)
}
animate()
```

We added a lot more dots in random positions and then `update()` `constrain()` `render()` them.

Let's see what that looks like:

https://codepen.io/anuraghazra/pen/VOpJJR?default-tab=results

Excellent — it's just a start, but finally, we have something.

Now we are going to add the sticks!

## Sticks

Sticks are the core of Verlet physics. Sticks make sure that the dots don’t get too far or too close to each other — they constrain dots to a certain distance.

![https://slsdo.github.io/blob-family/#constraint](./images/constraint_particle.png)

**Stick.js** class is relatively simple. It will take two **Dots** as an argument and a length. But if the length is not defined, we will calculate the length based on the dot’s position.

```js {11,4-5}
// Stick.js
class Stick {
  constructor(p1, p2, length) {
    this.startPoint = p1
    this.endPoint = p2
    this.stiffness = 2
    this.color = "#f5476a"
    // if the length is not given then calculate the distance based on the position
    if (!length) {
      this.length = this.startPoint.pos.dist(this.endPoint.pos)
    } else {
      this.length = length
    }
  }
}
```

Now let's add the actual core of the algorithm, This resolves and updates the dot’s position based on the stick’s distance, ultimately constraining it to a certain distance from all other dots.

```js
// Stick.js
update() {
  // calculate the distance between two dots
  let dx = this.endPoint.pos.x - this.startPoint.pos.x;
  let dy = this.endPoint.pos.y - this.startPoint.pos.y;
  // pythagoras theorem
  let dist = Math.sqrt(dx * dx + dy * dy);
  // calculate the resting distance betwen the dots
  let diff = (this.length - dist) / dist * this.stiffness;
  // getting the offset of the points
  let offsetx = dx * diff * 0.5;
  let offsety = dy * diff * 0.5;
  // calculate mass
  let m1 = this.startPoint.mass + this.endPoint.mass;
  let m2 = this.startPoint.mass / m1;
  m1 = this.endPoint.mass / m1;
  // and finally apply the offset with calculated mass
  if (!this.startPoint.pinned) {
    this.startPoint.pos.x -= offsetx * m1;
    this.startPoint.pos.y -= offsety * m1;
  }
  if (!this.endPoint.pinned) {
    this.endPoint.pos.x += offsetx * m2;
    this.endPoint.pos.y += offsety * m2;
  }
}
```

Okay, I think we are good to go! Let’s add the render function:

```js
// Stick.js
render(ctx) {
  ctx.beginPath();
  ctx.strokeStyle = this.color;
  ctx.moveTo(this.startPoint.pos.x, this.startPoint.pos.y);
  ctx.lineTo(this.endPoint.pos.x, this.endPoint.pos.y);
  ctx.stroke();
  ctx.closePath();
}
```

Setting up:

```js {11,20-24,34-37}
// index.js | setup
let canvas = document.getElementById("c");
let ctx = canvas.getContext("2d");
let CANVAS_WIDTH = window.innerWidth;
let CANVAS_HEIGHT = window.innerHeight;
canvas.width = CANVAS_WIDTH;
canvas.height = CANVAS_HEIGHT;
// arrays
let dots = [];
let sticks = [];
// forming a BOX
dots.push(new Dot(100, 100, (Math.random() - 0.5) * 100.0); // x, y, vx, vy
dots.push(new Dot(200, 100));
dots.push(new Dot(200, 200));
dots.push(new Dot(100, 200));
// sticks
sticks.push(new Stick(dots[0], dots[1]))
sticks.push(new Stick(dots[1], dots[2]))
sticks.push(new Stick(dots[2], dots[3]))
sticks.push(new Stick(dots[3], dots[0]))
sticks.push(new Stick(dots[3], dots[1]))
function animate() {
  ctx.clearRect(0, 0, CANVAS_WIDTH, CANVAS_HEIGHT);
  for (let d of dots) {
    d.update();
    d.constrain();
    d.render(ctx);
  }
  for (let s of sticks) {
    s.update();
    s.render(ctx);
  }
  requestAnimationFrame(animate);
}
animate();
```

Let’s see the results:

https://codepen.io/anuraghazra/pen/qGmWmZ?default-tab=results

As you can see, we have a box! Well, a box that acts like it’s made of Jello, That’s because, in a single frame, one update per stick is not enough to make the dots rest at their length. We have to iterate the simulation as many times as we can — the more the iterations, the more the rigid box will be.

Adding these lines to the existing code will make the box rigid:

```js {2,8}
// index.js | setup
const ITERATION = 100 // max physics iterations per frame
function animate() {
  ctx.clearRect(0, 0, CANVAS_WIDTH, CANVAS_HEIGHT)
  // iterate over the simulation
  for (let i = 0; i < ITERATION; i++) {
    for (let d of dots) {
      d.constrain()
    }
    for (let s of sticks) {
      s.update()
    }
  }
  for (let d of dots) {
    d.update()
    d.render(ctx)
  }
  for (let s of sticks) {
    s.update()
    s.render(ctx)
  }
  requestAnimationFrame(animate)
}
animate()
```

https://codepen.io/anuraghazra/pen/gJWpmX?default-tab=results

Looks amazing, isn’t it?

## Entity.js: managing dots and sticks in one place

Okay, now we have Dot.js and Stick.js. Both are working nicely, but the problem is we don't have much control over how we use them.

We will create an Entity Class that will easily handle the Updates and Renders of the Verlet Object. I'm going to paste the whole code here — it’s nothing special:

```js
// Entity.js
class Entity {
  constructor(iterations) {
    this.dots = []
    this.sticks = []
    this.iterations = iterations || 16
  }
  addDot(x, y, vx, vy) {
    this.dots.push(new Dot(x, y, vx, vy))
  }
  addStick(p1, p2, length) {
    this.sticks.push(new Stick(this.dots[p1], this.dots[p2], length))
  }
  updatePoints() {
    for (let i = 0; i < this.dots.length; i++) {
      this.dots[i].update()
    }
  }
  updateSticks() {
    for (let i = 0; i < this.sticks.length; i++) {
      this.sticks[i].update()
    }
  }
  updateContrains() {
    for (let i = 0; i < this.dots.length; i++) {
      this.dots[i].constrain()
    }
  }
  renderPoints(ctx) {
    for (let i = 0; i < this.dots.length; i++) {
      this.dots[i].render(ctx)
    }
  }
  renderSticks(ctx) {
    for (let i = 0; i < this.sticks.length; i++) {
      this.sticks[i].render(ctx)
    }
  }
  update(ctx) {
    this.updatePoints()
    for (let j = 0; j < this.iterations; j++) {
      this.updateSticks()
      this.updateContrains()
    }
    this.renderPoints(ctx)
    this.renderSticks(ctx)
  }
}
```

Using the Entity Class:

```js
// index.js | setup
...
let box = new Entity(100)
// x, y, vx, vy added random velocity in first dot to make the box rotate a little bit
box.addDot(100, 100, (Math.random() - 0.5) * 100.0)
box.addDot(200, 100)
box.addDot(200, 200)
box.addDot(100, 200)
box.addStick(0, 1)
box.addStick(1, 2)
box.addStick(2, 3)
box.addStick(3, 0)
box.addStick(3, 1)
...
```

Yes, this is looking pretty clean and manageable!

Let's take a look at the final result:

https://codepen.io/anuraghazra/pen/JqNdQW?default-tab=results

Now we can create lots of fun Verlet Shapes with this Entity.js class!

## Verly.js: A physics engine I wrote

Verly.js is a Robust Verlet physics engine I wrote. It has many cool features:

1. Attraction — Repulsion behavior
2. Basic Shapes
3. Box, Hexagon, Cloth, Rope, Ragdoll
4. Cloth Tearing
5. Typography and Text

With Verly.js you can create a tearable cloth in just 15 lines of code:

```js {7-8,12-13}
// Verly.js | demo
let canvas = document.getElementById("c")
let ctx = canvas.getContext("2d")
let width = (canvas.width = 800)
let height = (canvas.height = 600)
let verly = new Verly(16)
let cloth = verly.createCloth(150, 150, 250, 250, 15, 2)
function animate() {
  ctx.clearRect(0, 0, width, height)
  verly.update()
  cloth.tear(100) // tear threshold
  requestAnimationFrame(animate)
}
animate()
```

Demo: https://anuraghazra.github.io/Verly.js/

Source-code: https://github.com/anuraghazra/Verly.js

Examples: https://anuraghazra.github.io/Verly.js/examples

Take a look at some of the examples in my Verly.js Physics Engine, which I created some time ago. I added almost everything in that engine.

![Spherical Shapes anuraghazra.github.io](./images/example1.png)
![Attraction Repulsion Behavior anuraghazra.github.io](./images/example2.png)
![RagDoll anuraghazra.github.io](./images/example3.png)
![Cloth anuraghazra.github.io](./images/example4.png)

Codepen examples:

https://codepen.io/anuraghazra/pen/vwmLKo?default-tab=results

Verly.js’s API is easy to use and flexible because of its Entity Component Structure.

Thanks for reading — I hope you learned something!

------

### Other places to learn about Verlet physics:

> [Keith Peter’s CodingMath Verlet Physics Videos.](https://www.youtube.com/watch?v=3HjO_RGIjCU)
> Amazing [Article At DataGenetic](http://datagenetics.com/blog/july22018/index.html)