-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (35 loc) · 1.48 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
42
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="Cloth simulation">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<title>Simulating cloth in WebGL</title>
<link rel="stylesheet" href="build/main.css">
</head>
<body>
<!--
dMMMMMMP dMP dMP .dMMMb
dMP dMP dMP dMP" VP Bachelor thesis - Simulating cloth in WebGL
dMP dMP dMP VMMMb Copyright (c) 2016 Tim van Scherpenzeel
dMP YMvAP" dP .dMP https://www.timvanscherpenzeel.com
dMP VP" VMMMP"
Credits:
- Ziwei Zong: https://github.com/zammiez/CIS565-Final-WebGL-Cloth-Simulation
- Brandon Jones: https://github.com/toji/webgl2-particles
- Mr Doob: https://github.com/mrdoob/brokenmantra/blob/master/js/GPGPU.js
-->
</body>
<!--
<script src="scripts/vendor/three.js"></script>
<script src="scripts/vendor/dat.gui.js"></script>
<script src="scripts/vendor/stats.min.js"></script>
<script src="scripts/vendor/orbitcontrols.js"></script>
<script src="scripts/GUI.js"></script>
<script src="scripts/GPGPU.js"></script>
<script src="scripts/simulation.js"></script>
<script src="scripts/shaderloader.js"></script>
<script src="scripts/main.js"></script>
-->
<script src="build/main.min.js"></script>
</html>