-
Notifications
You must be signed in to change notification settings - Fork 0
/
nature.html
55 lines (50 loc) · 2.22 KB
/
nature.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<html>
<head>
<title>WebGL Nature Scene</title>
<script type="text/javascript" src="lib/spidergl.js"></script>
<script type="text/javascript" src="src/app.js"></script>
<script type="text/javascript" src="src/ui.js"></script>
<script type="text/javascript" src="src/scene.js"></script>
<script type="text/javascript" src="src/sky.js"></script>
<script type="text/javascript" src="src/terrain.js"></script>
<script type="text/javascript" src="src/water.js"></script>
<script type="text/javascript" src="src/birds.js"></script>
<script type="text/javascript" src="src/boid.js"></script>
<script type="text/javascript" src="src/portal.js"></script>
<script type="text/javascript" src="src/terraincell.js"></script>
<script type="text/javascript" src="src/grasscell.js"></script>
<script type="text/javascript" src="src/heightmap.js"></script>
<script type="text/javascript" src="src/transform.js"></script>
<script type="text/javascript" src="src/util.js"></script>
<script type="text/javascript" src="src/log.js"></script>
</head>
<body>
<center>
<table border="0" width="720">
<tr align="center">
<td>
<h1><font color="#222222">WebGL</font> Nature Scene Demo</h1>
<p style="font-family:Arial,sans-serif;">using <a href="http://spidergl.org/index.php"><b>SpiderGL</b></a> graphic library</p>
<hr/>
</td>
</tr>
<tr align="left">
<td>
<div style="width:720px; margin:auto; position:relative; font-size: 9pt; color: #000000; cursor: default;">
<canvas id="SCENE_CANVAS" style="border: 1px solid gray" width="720" height="500"></canvas>
<div id="SCENE_STATS" style="display:block; color:#ffffff; padding:5px; position:absolute; left:10px; top:10px; background-color:#000000; height:30px; width:80px; border-radius:5px; border:1px solid #FF8040; font-family:Courier New,sans-serif; font-size:12px; opacity:0.5;">
TRI: N/A<br>FPS: N/A
</div>
</div>
<hr/>
</td>
</tr>
<tr align="center">
<td>
<a href="http://code.google.com/p/webgl-nature-scene/"><i>http://code.google.com/p/webgl-nature-scene/</i></a>
</td>
</tr>
</table>
</center>
</body>
</html>