blob: bdb2f5da7297107d563a4296250f310d7c0e2b9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!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='./pure.mjs' type='module'></script> -->
<script src='./wasm.mjs' type='module'></script>
<footer>
<address><a href='https://git.spork.org/polyring.git'>src</a></address>
</footer>
</body>
</html>
|