-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
24 lines (24 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<title>Wave simulation</title>
<meta charset='utf-8' />
<link rel='stylesheet' href='style.css' />
<link rel='icon' type='image/png' href='images/zodiac.png' />
</head>
<body>
<div class='equation'><a title='The wave equation' href='https://github.com/dionyziz/wave-experiment#the-math-behind-it' target='_blank'>∇<sup>2</sup>u = u<sub>tt</sub></a></div>
<div class='instructions'>
<strong>Click</strong> for droplet.<br />
<strong>Drag & wheel</strong> to look.
</div>
<div class='by'>
a <a href='http://github.com/dionyziz/wave-experiment' class='github' title='Fork on GitHub'>physics experiment</a> by
<a href='http://github.com/petrosagg' class='person'><img src='images/petros.jpg' alt='petrosagg' title='petrosagg' width='50' /></a>
<a href='http://github.com/dionyziz' class='person'><img src='images/dionyziz.png' alt='dionyziz' title='dionyziz' width='50' /></a>
</div>
<script src='lib/three.min.js'></script>
<script src='lib/TrackballControls.js'></script>
<script src='main.js'></script>
</body>
</html>