-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 966 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
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Trabalho Final CG</title>
<link rel="stylesheet" href="main.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/gl-matrix/2.6.1/gl-matrix-min.js"></script>
</head>
<body>
<div class="container">
<canvas id="glcanvas"></canvas>
<div>
<div id="explain" style="width: 998px; height: 65px">
<div>
<p>p para trocar a projeção. | i para abrir o diálogo de estrela da esfera. | o para abrir o diálogo de estrela do coelho.</p>
<p>OBS: O valor -1 limpa a estrela da malha.</p>
</div>
</div>
</div>
</body>
<script src="shader.js" type="module"></script>
<script src="camera.js" type="module"></script>
<script src="light.js" type="module"></script>
<script src="half-edge.js" type="module"></script>
<script src="mesh.js" type="module"></script>
<script src="main.js" type="module"></script>
</html>