-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·41 lines (32 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
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<title>CreepyTree</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
font-family: Monospace;
background-color: #e0e0e0;
margin: 0px;
overflow: hidden;
}
</style>
</head>
<body>
<script src="three.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="jquery-1.8.3.min.js"><\/script>')</script>
<script src="Curve.js"></script>
<script src="TreeCurve.js"></script>
<script src="TubeGeometry.js"></script>
<script src="CreepyTreeMaterial.js"></script>
<script src="TreeTubeGeometry.js"></script>
<script src="CameraHelper.js"></script>
<!-- where curves formulas are defined -->
<script src="CurveExtras.js"></script>
<script src="stats.min.js"></script>
<script src="dat.gui.min.js"></script>
<script src="Vine.js"></script>
</body>
</html>