-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·22 lines (22 loc) · 927 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="Linus Schilpp">
<link rel="stylesheet" href="engine/style/index.css" />
<script src="engine/script/math.js"></script>
<script src="engine/script/lib.js"></script>
<script src="settings.js"></script>
<script src="engine/script/drawing-tool.js"></script>
<script src="engine/script/coordinate-system.js"></script>
<script src="main.js"></script>
<script src="engine/script/events.js"></script>
<title>CoordinateSystem</title>
</head>
<body>
<ul id="debug"></ul>
<p id="instruction"><span>Zoom: </span>Mousewheel / <span>Move: </span>Click and drag</p>
<button id="download-button"><a id="download" target="_blank" download="math-plotter-result.png">Download</a></button>
<canvas id="screen" width="800" height="800"></canvas>
</body>
</html>