From e5a16b20d4da1cf382f5532a2f61ed62aa959fb5 Mon Sep 17 00:00:00 2001 From: javalsai Date: Sun, 24 Nov 2024 02:03:06 +0100 Subject: [PATCH] add 3rs-orbit --- tools/3rs-orbit/.gitignore | 1 + tools/3rs-orbit/index.html | 17 +++++++++++++++++ tools/3rs-orbit/index.js | 11 +++++++++++ tools/index.html | 1 + 4 files changed, 30 insertions(+) create mode 100644 tools/3rs-orbit/.gitignore create mode 100644 tools/3rs-orbit/index.html create mode 100644 tools/3rs-orbit/index.js diff --git a/tools/3rs-orbit/.gitignore b/tools/3rs-orbit/.gitignore new file mode 100644 index 0000000..fc5bd90 --- /dev/null +++ b/tools/3rs-orbit/.gitignore @@ -0,0 +1 @@ +/pkg diff --git a/tools/3rs-orbit/index.html b/tools/3rs-orbit/index.html new file mode 100644 index 0000000..c03e88c --- /dev/null +++ b/tools/3rs-orbit/index.html @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/tools/3rs-orbit/index.js b/tools/3rs-orbit/index.js new file mode 100644 index 0000000..0f1b5c1 --- /dev/null +++ b/tools/3rs-orbit/index.js @@ -0,0 +1,11 @@ +import init from './pkg/web.js'; + +async function run() { + try { + await init(); + } catch(e) { + console.error(e); + } +} + +run(); diff --git a/tools/index.html b/tools/index.html index b57d8fa..96540f5 100644 --- a/tools/index.html +++ b/tools/index.html @@ -15,6 +15,7 @@

This is just a collection of tools or stuff I've made, out there for any to use.