diff options
| author | brian cully <bjc@spork.org> | 2025-12-26 12:04:14 -0500 |
|---|---|---|
| committer | brian cully <bjc@spork.org> | 2025-12-26 12:04:14 -0500 |
| commit | fa3067a16f8ba06ee756eb2b2293be4cb728681d (patch) | |
| tree | 41b5ab1e76e12be764d4f6481febe49862bf8ea1 /site/index.html | |
| download | polyring-fa3067a16f8ba06ee756eb2b2293be4cb728681d.tar.gz polyring-fa3067a16f8ba06ee756eb2b2293be4cb728681d.zip | |
add bouncing particles
Diffstat (limited to 'site/index.html')
| -rw-r--r-- | site/index.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/site/index.html b/site/index.html new file mode 100644 index 0000000..012e301 --- /dev/null +++ b/site/index.html @@ -0,0 +1,25 @@ +<!DOCTYPE html> +<html lang='en-US'> + <head> + <meta charset='utf-8'> + <title>polyring</title> + <link rel='stylesheet' href='main.css'> + <meta name='viewport' content='width=device-width'> + </head> + + <body> + <h1>polyring</h1> + <p>benchmarking maximal convex polygon finding</p> + + <button>go</button> + <span>fps: <span id='fps'>n/a</span></span> + <br> + <canvas width='500' height='500'></canvas> + + <script src='./main.mjs' type='module'></script> + + <footer> + <address><a href='https://git.spork.org/polyring.git'>src</a></address> + </footer> + </body> +</html> |
