blob: ec9c6c4d325d8a492bb1b4dbfd03c45079a9fe38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<html>
<head>
<title>Harmonograph</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h2>Harmonograph</h2>
<div id="header_links_div"></div>
<script src="js/header_links.js"></script>
<hr>
<button onclick="start();">Start</button><br>
<button onclick="saveCanvas();">Save image</button><br>
<button onclick="addPendulum();">Add pendulum</button>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.2/p5.js"></script>
<script src="js/Harmonograph.js"></script>
</body>
</html>
|