-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (38 loc) · 1.94 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<!-- import key libraries -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.js"></script>
<script src="https://cdn.jsdelivr.net/gh/nicolaspanel/[email protected]/dist/numjs.js"></script>
<!-- import my helper functions -->
<script src="https://awillats.github.io/dynamics-visualizer-p5/colorFunctions.js"></script>
<script src="https://awillats.github.io/dynamics-visualizer-p5/plotFunctions.js"></script>
<script src="https://awillats.github.io/dynamics-visualizer-p5/dragPoints.js"></script>
<script src="https://awillats.github.io/circuit-visualizer-p5/AdjMat.js"></script>
<script src="https://awillats.github.io/circuit-visualizer-p5/plotFuns.js"></script>
<!-- import font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Kreon&display=swap" rel="stylesheet">
<!-- https://fonts.google.com/specimen/Kreon -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/markdown-it/12.2.0/markdown-it.min.js" integrity="sha512-cTQeM/op796Fp1ZUxfech8gSMLT/HvrXMkRGdGZGQnbwuq/obG0UtcL04eByVa99qJik7WlnlQOr5/Fw5B36aw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected]/index.min.js"></script>-->
<!-- import main and helper scripts -->
<script src="sketch.js"></script>
<script src="ui-node.js"></script>
<script src="signal-generation.js"></script>
<script src="network-simulation.js"></script>
<script src="signal-analysis.js"></script>
</head>
<body>
<main>
<!--
<p>
Explore the relationship between <br> <b>network structure and cross-correlations</b>
</p>
<p>
Controls: `c` clears the signal buffer
</p> -->
</main>
</body>
</html>