blob: e162ade71cb615bee4479f9a272071a548af49d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!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>
<a href="https://github.com/EliasFleckenstein03/lagrange-playground" style="position: fixed; bottom: 5px; right: 5px">View Source</a>
</body>
</html>
|