-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.html
executable file
·28 lines (27 loc) · 1.1 KB
/
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Canvas Terrain Generator</title>
<link rel="stylesheet" href="styles/terrain.css" type="text/css"/>
</head>
<body>
<canvas id="canvas" width="10" height="10"></canvas>
<img id="imgSave"></img>
<canvas id="voxelview" width="10" height="10"></canvas>
<script type="text/javascript" src='http://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.5/dat.gui.min.js'></script>
<script type="module" src="js/height-map.js"></script>
<script type="module" src="js/shadow-map.js"></script>
<script type="module" src='js/index.js'></script>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-1702440-11");
pageTracker._trackPageview();
} catch(err) {}
</script>
</body>
</html>