Add todo list

This commit is contained in:
2026-02-05 13:36:24 -08:00
parent 3194245309
commit a13a03e031
2 changed files with 9 additions and 1 deletions

View File

@@ -119,3 +119,11 @@ Delete your `.sitegen_cache` file.
* use sitecache with pandoc renderer
* draft documents
* treesitter highlighting for moonscript
## todo
* add more than one ship
* make corners not bouncy
* increase ship radius
* add a Draw system?
* wall entities

View File

@@ -685,7 +685,7 @@ const Move = (() => {
return [...edgeColl, ...cornerColl];
}
// Math.round(3.141592653589793e+15 / 1)
function vector(x, y) {
const vector = { x: x, y: y };
vector.magnitude = Math.sqrt(x**2+y**2);

Before

Width:  |  Height:  |  Size: 49 KiB

After

Width:  |  Height:  |  Size: 49 KiB