add 3rs-orbit
This commit is contained in:
parent
c3f4363091
commit
e5a16b20d4
1
tools/3rs-orbit/.gitignore
vendored
Normal file
1
tools/3rs-orbit/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
/pkg
|
17
tools/3rs-orbit/index.html
Normal file
17
tools/3rs-orbit/index.html
Normal file
@ -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>
|
11
tools/3rs-orbit/index.js
Normal file
11
tools/3rs-orbit/index.js
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
import init from './pkg/web.js';
|
||||||
|
|
||||||
|
async function run() {
|
||||||
|
try {
|
||||||
|
await init();
|
||||||
|
} catch(e) {
|
||||||
|
console.error(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
run();
|
@ -15,6 +15,7 @@
|
|||||||
<p>This is just a collection of tools or stuff I've made, out there for any to use.</p>
|
<p>This is just a collection of tools or stuff I've made, out there for any to use.</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="qalc">qalc</a> - Popular libqalculate tool compiled for the web</li>
|
<li><a href="qalc">qalc</a> - Popular libqalculate tool compiled for the web</li>
|
||||||
|
<li><a href="3rs-orbit">3rs-orbit</a> - Just <a href="https://github.com/javalsai/3rs-orbit/">a wasm project</a> built and hosted on my website to test it. Prob not the at the latest commit.</li>
|
||||||
</ul>
|
</ul>
|
||||||
</main>
|
</main>
|
||||||
<!--# include virtual="/components/footer.html" -->
|
<!--# include virtual="/components/footer.html" -->
|
||||||
|
Loading…
x
Reference in New Issue
Block a user