forked from adrianton3/differential-growth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (24 loc) · 890 Bytes
/
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Differential Growth</title>
<link rel="stylesheet" href="lib/dat/dat.gui.css">
<script src="lib/dat/dat.gui.min.js"></script>
<script src="lib/pixi/pixi.js"></script>
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<canvas id="can" width="768" height="768"></canvas>
<p>Differential growth</p>
<p>This project uses <a href="https://get.webgl.org/">WebGL</a> and runs optimally on a machine with at least 2 cores.</p>
<p>Use the mouse to interact.</p>
<script src="src/define.js"></script>
<script src="src/worker/vec2.js"></script>
<script src="src/worker/joint.js"></script>
<script src="src/draw/outline.js"></script>
<script src="src/draw/light.js"></script>
<script src="src/draw/draw.js"></script>
<script src="src/app.js"></script>
</body>
</html>