-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
22 lines (22 loc) · 760 Bytes
/
Copy pathmain.html
File metadata and controls
22 lines (22 loc) · 760 Bytes
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>
<style>
#the-canvas { border: 1px solid darkblue; }
</style>
</head>
<body>
<canvas id = "the-canvas" width = "1200" height = "900"></canvas>
<script src = "lib.js"></script>
<script src = "matrix_template.js"></script>
<script src = "vector_template.js"></script>
<script src = "mesh_template.js"></script>
<script src = "keys.js"></script>
<script src = "node.js"></script>
<script src = "material.js"></script>
<script src = "scene.js"></script>
<script src = "render_mesh.js"></script>
<script src = "render_light.js"></script>
<script src = "main.js"></script>
</body>
</html>