-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (24 loc) · 1.01 KB
/
index.html
File metadata and controls
26 lines (24 loc) · 1.01 KB
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
<!doctype html>
<html>
<head>
<title>DynamicTerrainMap - Flat World Demo</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link href="demo/css/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="wrapper">
<h1>THREE.DynamicTerrainMap</h1>
<h2>Manage large terrain areas with a single THREE object.</h2>
<br><br>
<h3>Demos:</h3>
<a href="demo/flat.html">Flat 5000x5000 Terrain</a><br>
<a href="demo/small-tile.html">5000x5000 Simple Hills with 100x100 Tiles</a><br>
<a href="demo/large-tile.html">5000x5000 Simple Hills with 1000x1000 Tiles</a><br>
<a href="demo/data.html">Direct Array 2500x2500 Terrain</a><br>
<a href="demo/image.html">Image 4700x4700 Terrain</a><br>
<a href="demo/image-large.html">Image 9600x9600 Terrain</a> - Warning: this can crash browsers pretty easily.<br>
<a href="demo/walk.html">Simulated Terrain Walking</a><br>
</div>
</body>
</html>