-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractica5.html
More file actions
29 lines (28 loc) · 966 Bytes
/
practica5.html
File metadata and controls
29 lines (28 loc) · 966 Bytes
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
<!doctype html>
<!--
Practica 5
-->
<html lang="es">
<head>
<meta charset="utf-8">
<title>Practica 5</title>
<style>
body{ background-color: white;margin: 0px;overflow: hidden;}
</style>
</head>
<body onload="main()">
<!-- scripts de libreria -->
<script src="./lib/webgl-utils.js"></script>
<script src="./lib/webgl-debug.js"></script>
<script src="./lib/cuon-matrix.js"></script>
<script src="./lib/cuon-utils.js"></script>
<script src="./lib/three.min_r140.js"></script>
<script src="./lib/threex.keyboardstate.js"></script>
<script src="./lib/dat.gui.min.js"></script>
<script src="./lib/tween_18.js"></script>
<script src="./lib/lil-gui_0.16.1.js"></script>
<script src="./lib/OrbitControls.js"></script>
<!-- mis scripts -->
<script src="./js/practica5.js"></script>
</body>
</html>