Compare commits

...

2 Commits

Author SHA1 Message Date
b29e739d3d
move pongwars into docs/ 2024-02-18 16:50:57 -05:00
523dd248b9
[pongwars] increase initial speed back to what it was 2024-02-17 19:54:54 -05:00
4 changed files with 4 additions and 2 deletions

0
.nojekyll Normal file
View File

View File

@ -1,3 +1,5 @@
# garbage-monorepo
a dump of all the actually useless scripts, code, and other toys, put into one repo
`docs/` is all the stuff hosted on github.io

View File

@ -232,8 +232,8 @@
for (let i = 0; i < teams.length; i++) {
const angle = randomNum(0, 2 * Math.PI);
teams[i].dx = 5 * Math.cos(angle);
teams[i].dy = 5 * Math.sin(angle);
teams[i].dx = 8 * Math.cos(angle);
teams[i].dy = 8 * Math.sin(angle);
}
}