From a13a03e0311ababa19c559f8b60e219e2cc6846a Mon Sep 17 00:00:00 2001 From: Catalin Constantin Mititiuc Date: Thu, 5 Feb 2026 13:36:24 -0800 Subject: [PATCH] Add todo list --- README.md | 8 ++++++++ html/images/space.svg | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e015f29..3ce39aa 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/html/images/space.svg b/html/images/space.svg index 26ae702..d6e3fd1 100644 --- a/html/images/space.svg +++ b/html/images/space.svg @@ -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);