diff --git a/notes/index.html b/notes/index.html index 2e34d7e..e923ae1 100644 --- a/notes/index.html +++ b/notes/index.html @@ -14,7 +14,6 @@ <h1><a class="reference" id="notes" href="#notes">Notes</a></h1> <p>This will just contain markdown notes about academic stuff. Will try to use nice web stuff as much as possible, like idk, integrate qalc graphs and that into formulas or smth.</p> - <p>FLASHBANG ALERT!</p> <ul class="row-ul"> <li><a href="math">math</a></li> <li><a href="physics">physics</a></li> 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 @@ +<!DOCTYPE html> +<html> + <head> + <meta content="text/html;charset=utf-8" http-equiv="Content-Type"/> + <script type="module" src="index.js"></script> + <style> + html, body { + height: 100%; + } + </style> + </head> + <body> + <button id="open-computer">Open From Computer</button> + <canvas style="position: absolute;top:0;bottom: 0;left: 0;right: 0;margin:auto;"></canvas> + <canvas style="position: absolute;top:0;bottom: 0;left: 600;right: 0;margin:auto;"></canvas> + </body> +</html> 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();