-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsolver.html
More file actions
39 lines (36 loc) · 1.19 KB
/
solver.html
File metadata and controls
39 lines (36 loc) · 1.19 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Termo solver</title>
<link rel="stylesheet" href="./webgl sources/style.css">
</head>
<body onload="main()" oncontextmenu="return false;">
<div class="canvas">
<canvas id="webgl" width="1600" height="800">
Update your browser to support "canvas"
</canvas>
</div>
<div class="parameters">
<fieldset>
<legend>Settings</legend>
<div>
<label for="show_nodes_checkbox"> Show only nodes:</label>
<input type="checkbox" id="show_nodes_checkbox" unchecked>
</div>
</fieldset>
</fieldset>
</div>
<div class="instruction_1">
<label for="use_arrows_label">use WASD to move camera</label>
</div>
<div class="instruction_2">
<label for="use_arrows_label">use Q and E to zoom</label>
</div>
<script src="./lib/webgl/webgl-utils.js"></script>
<script src="./lib/webgl/webgl-debug.js"></script>
<script src="./lib/webgl/cuon-utils.js"></script>
<script src="./lib/webgl/gl-matrix-min.js"></script>
<script src="./webgl sources/solver.js"></script>
</body>
</html>