-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
69 lines (60 loc) · 2.12 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE HTML>
<html>
<head>
<link href = 'https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel = 'stylesheet' type = 'text/css'>
<title>toybox</title>
<style>
html, body {
margin: 0; padding: 0;
background-color: #fff;
color: #999;
font-family: 'open sans', sans-serif;
font-size: 14px;
}
h2 { font-size: 18px; }
a { color: #999 }
/*UI*/
#container {
width: 720px;
margin: 4px auto;
}
#credits{
margin-top: 16px;
font-size: 12px;
}
</style>
</head>
<body>
<div id = "container">
<h2>TOYBOX</h2>
<div>
<p>a collection of computational playthings.</p>
<p>currently contains:</p>
<ul>
<!--<li><a href="1-barnes-hut/index.html">Barnes-Hut Gravity Simulation</li>-->
<!--<li><a href="2-boids/index.html">Craig Reynolds Boids</a></li>-->
<!--<li><a href="3-lattice-boltzmann/index.html">Lattice Boltzmann</a></li>-->
<li><a href="4-conway/index.html">Conway's Game of Life, in Parallel</a></li>
<li><a href="5-wave-eq/index.html">2D Wave Equation</a></li>
<li><a href="6-jakobsen/index.html">Jakobsen Particle-Constraint Physics</a></li>
<li><a href="7-gray-scott/index.html">Gray-Scott Reaction-Diffusion System</a></li>
<li><a href="8-attractors/index.html">Attractors in Dynamical Systems</a></li>
<li><a href="9-lipid/index.html">Self-Assembly of Lipid Structures</a></li>
<li><a href="10-schroedinger/index.html">Quantum Harmonic Oscillator</a></li>
<li><a href="11-metaballs/index.html">2D Metaballs</a></li>
<li><a href="12-nbody/index.html">Gravitational N-Body with Collisions</a></li>
<li><a href="13-julia/index.html">Julia Sets</a></li>
<li><a href="14-lbm/index.html">Parallel Lattice Boltzmann</a></li>
<li><a href="15-quasiperiodic/index.html">Quasiperiodic Wave Patterns</a></li>
<li><a href="16-divfree/index.html">Divergence-Free Flow Fields</a></li>
<!--<li><a href="17-voronoi/index.html">Voronoi Relaxation</a></li>-->
<li><a href="18-colloid/index.html">Colloidal Phase Transitions</a></li>
<li><a href="19-physarum/index.html">Emergent Tranport Networks</a></li>
</ul>
</div>
<div id = "credits">
J. Lo, 2016 - 2019.
</div>
</div>
</body>
</html>