1
0
Fork 0

chore: Updates to docs for new dev env

This commit is contained in:
Joost De Cock 2022-07-02 22:52:31 +02:00
parent 474188a05e
commit 8cd70bc451
37 changed files with 500 additions and 350 deletions

View file

@ -11,7 +11,7 @@ The rest of your bib should stay as it is, so let's start by making a list of po
to rotate:
```js
let rotateThese = [
const rotateThese = [
"edgeTopLeftCp",
"edgeTop",
"tipRight",
@ -34,7 +34,7 @@ Now you can rotate them. How far? Until the strap no longer overlaps:
```js
while (points.tipRightBottomStart.x > -1) {
for (let p of rotateThese) points[p] = points[p].rotate(1, points.edgeLeft)
for (const p of rotateThese) points[p] = points[p].rotate(1, points.edgeLeft)
}
```