-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (52 loc) · 3.23 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SBME - Digital Filter Design</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.3.1/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.3.2/chart.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.3.2/chart.esm.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.3.2/helpers.esm.min.js"></script>
<link rel="stylesheet" href="includes/css/style.css">
</head>
<body>
<main>
<div id="demo"></div>
<div id="canvas" onmousemove=""></div>
<!-- <input type="radio" class="btn-check" name="options-outlined" id="new-pole" autocomplete="off" checked>
<label class="btn btn-outline-success" for="new-pole">Add New Pole</label>
<input type="radio" class="btn-check" name="options-outlined" id="new-zero" autocomplete="off">
<label class="btn btn-outline-danger" for="new-zero">Add New Zero</label> -->
<div class="btn-group" role="group" aria-label="Button group with nested dropdown">
<input type="radio" class="btn-check" name="options-outlined" id="new-pole" autocomplete="off" checked>
<label class="btn btn-outline-success" for="new-pole">Add New Pole</label>
<input type="radio" class="btn-check" name="options-outlined" id="new-zero" autocomplete="off">
<label class="btn btn-outline-danger" for="new-zero">Add New Zero</label>
<div class="All-Pass" role="group">
<select id="btnGroupDrop1" type="button" class="btn btn-primary dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
<option value="..">All-Pass Filter</option>
<option value="0.5">0.5</option>
<option value="0.6">0.6</option>
<option value="0.7">0.7</option>
<option value="0.8">0.8</option>
<option value="0.9">0.9</option>
<option value="custom">Add Custom Filter</option>
</select>
</div>
<div class="form-check form-switch enable-conjugates">
<input class="form-check-input" type="checkbox" id="create-conjugate" checked>
<label class="form-check-label" for="create-conjugate">Add Conjugates</label>
</div>
</div>
<canvas id="Magnitude"></canvas>
<canvas id="Phase"></canvas>
</main>
<script src="scripts/polesAndZeros.js"></script>
<script src="scripts/Magnitude.js"></script>
<script src="scripts/Phase.js"></script>
</body>
</html>