blob: 0ca46720a3f8f80fd86df8904f712746f2e27dba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Lagrange Playground</title>
<script defer src="init.js"></script>
</head>
<body>
<canvas style="position: fixed; top: 0px; left: 0px"></canvas>
<div style="position: fixed; bottom: 0px; left: 0px">
<input type="checkbox" id="grid"><label for="grid">Show grid</label><br>
<input type="checkbox" id="lines"><label for="lines">Show lines</label><br>
<input type="checkbox" id="circles"><label for="circles">Show circles</label><br>
</div>
</body>
</html>
|