-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebglapp.html
More file actions
25 lines (25 loc) · 783 Bytes
/
Copy pathwebglapp.html
File metadata and controls
25 lines (25 loc) · 783 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
<!doctype html>
<!--
Seminario 1: Webgl
Plantilla de carga de paginas en webgl
-->
<html lang="es">
<head>
<meta charset="utf-8">
<title>Aplicacion en Webgl</title>
<style>
body{ background-color: white;margin: 0px;overflow: hidden;}
canvas{ background-color: white;}
</style>
</head>
<body onload="main()">
<canvas id="canvas" width="400" height="300"></canvas>
<!-- 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>
<!-- mis scripts -->
<script src="js/miscript.js"></script>
</body>
</html>