-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterference.html
More file actions
executable file
·48 lines (46 loc) · 1.27 KB
/
Copy pathinterference.html
File metadata and controls
executable file
·48 lines (46 loc) · 1.27 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="description" content="Interference javascript simulation : " />
<link rel="stylesheet" type="text/css" media="screen" href="interference.css">
<script language='javascript' src='interference.js'></script>
<title>Interference</title>
</head>
<body onload="init();">
<h3>Interference simulation</h3>
<div class="inner">
<div id="columns">
<div id="canvas_column">
<div>
<canvas id="canvas">
</canvas>
</div>
<div id="settings">
<label> Number of sources:
<select id="select" onchange="setSources()">
</select>
</label>
<label> Show sources:
<input id="checkbox" type="checkbox" checked onclick="setShowSources()" />
</label>
<input type="button" id="runButton" value="Pause" onclick="toggleRunning()" />
</div>
</div>
<div id="periods_column">
<div>
Periods:
</div>
<div id="periods"></div>
</div>
<div id="phases_column">
<div>
Phases:
</div>
<div id="phases"></div>
</div>
</div>
</div>
</body>
</html>