-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (34 loc) · 1.61 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Char2Fourier s2.0</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.2/p5.min.js" integrity="sha512-rCZdHNB0AePry6kAnKAVFMRfWPmUXSo+/vlGtrOUvhsxD0Punm/xWbEh+8vppPIOzKB9xnk42yCRZ5MD/jvvjQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://code.jquery.com/jquery-3.6.0.slim.min.js" integrity="sha256-u7e5khyithlIdTpu22PHhENmPcRdFiHRjhAuHcs05RI=" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/pep/0.4.3/pep.min.js" integrity="sha256-ibZWIASZ948myvthXu3qCoTOg8bnJzjMJoYZz1RPg6E=" crossorigin="anonymous"></script>
<script src="javascripts/Spline.js"></script>
<script src="javascripts/Fourier.js"></script>
<script src="javascripts/EventListener.js"></script>
<script src="javascripts/main.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<p id="titleBar">
<label id="title">Char2Fourier v2.0 (developed by Kenta Sato / Nakamura Lab.)</label>
</p>
<button id="coefficientToggle">係数ON</button>
<div id="canvasInput"></div>
<table border="1">
<tr>
<td id="formulaX1" class="formula-x">x(t) = </td>
<td id="formulaX2" class="formula-x">x(t) = </td>
<td id="formulaX3" class="formula-x">x(t) = </td>
</tr>
<tr>
<td id="formulaY1" class="formula-y">y(t) = </td>
<td id="formulaY2" class="formula-y">y(t) = </td>
<td id="formulaY3" class="formula-y">y(t) = </td>
</tr>
</table>
</body>
</html>