-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (29 loc) · 1.07 KB
/
index.html
File metadata and controls
33 lines (29 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>P5 Fourier</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/p5.min.js"></script>
</head>
<body>
<div class="main-container">
<div id="canvas-holder"></div>
<div class="sidebar">
<h1>Fourier Series Simulation</h1>
<div class="controls">
<ul>
<li><strong>Mouse</strong> : Click to draw lines, Drag to draw curves</li>
<li><strong>Enter</strong> : Start Simulation</li>
<li><strong>R</strong> : Reset</li>
<li><strong>↑ / ↓</strong> : # of Vector (2~200, Default: 60)</li>
<li><strong>← / →</strong> : Zoom Level (0.7 ~ 15, Default: 7)</li>
<li><strong>F</strong> : Toggle Focus Mode</li>
</ul>
</div>
</div>
</div>
<script src="sketch.js"></script>
</body>
</html>