-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathgrapher.html
More file actions
22 lines (21 loc) · 950 Bytes
/
grapher.html
File metadata and controls
22 lines (21 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="mystyle.css">
<meta charset="utf-8"/>
<meta name="theme-color" content="#000000">
<script src="https://openprocessing.org/openprocessing_sketch.js"></script>
<script src="https://cdn.jsdelivr.net/npm/p5@1.11.3/lib/p5.js"></script>
<meta name="viewport" content="user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1,width=device-width">
</head>
<body>
<script src="grapher/graphermain.js"></script>
<script src="grapher/graphermakepolylist.js"></script>
<script src="core/color.js"></script>
<script src="grapher/graphersettings.js"></script>
<script src="grapher/grapherui.js"></script>
<script src="grapher/grapherutilities.js"></script>
<script src="grapher/graphersetup.js"></script>
<script src="grapher/grapherparse.js"></script>
</body>
</html>