-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (26 loc) · 950 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0>
<style> body {padding: 0; margin: 0;} </style>
<script src="p5/p5.min.js"></script>
<script src="p5/p5.dom.min.js"></script>
<script src="p5/p5.sound.min.js"></script>
<script src="sketch.js"></script>
</head>
<body>
<center>
<h1><code> Modular Multiplication on a Circle </code></h1>
<div id='p5jsContainer' style="margin: 0 0; background-color: black;"></div>
<div style="width: 800px">
<code>
Inspired by
<a href="https://www.youtube.com/watch?v=qhbuKbxJsk8" target="_blank">Mathlogger</a>,
thanks to <a href="http://p5js.org" target="_blank">p5js</a><br/>
<a href="https://github.com/pablo-benito/" target="_blank">Pablo Benito</a><br/>
</code>
</div>
</center>
</body>
</html>