-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
42 lines (31 loc) · 958 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>SPH</title>
<script type="text/javascript" src="js/lib/hand.minified.js"></script>
<style type="text/css">
body{
font-family: 'Tahoma';
background-color: #ccc;
}
canvas{
border: 1px solid #aaa;
}
p{
font-size: 12px;
}
a{text-decoration: none;color: #111;}
a:hover{text-decoration: underline;}
</style>
</head>
<body oncontextmenu="return false;">
<h3>SPH Fluid</h3>
<p>This is an unpolished version. <b>Click</b> to add particles. <b>Right-Click</b> on particles to simulate touch. <br><a href="http://www.AsadMemon.com" target="_blank">AsadMemon</a></p>
<script type="text/javascript" src="js/Particle.js"></script>
<script type="text/javascript" src="js/Neighbor.js"></script>
<script type="text/javascript" src="js/Grid.js"></script>
<script type="text/javascript" src="js/SPH.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>