forked from znah/graphs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalice.html
More file actions
41 lines (40 loc) · 1.81 KB
/
Copy pathalice.html
File metadata and controls
41 lines (40 loc) · 1.81 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Growing graphs - Autonomous Mode</title>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://znah.net/graphs/alice.html">
<meta property="og:title" content="Growing Graphs - Autonomous Mode">
<meta property="og:description" content="Autonomous generative artwork exploration using graph-rewriting automata.">
<meta property="og:image" content="https://znah.net/graphs/preview.jpg">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://znah.net/graphs/alice.html">
<meta property="twitter:title" content="Growing Graphs - Autonomous Mode">
<meta property="twitter:description" content="Autonomous generative artwork exploration using graph-rewriting automata.">
<meta property="twitter:image" content="https://znah.net/graphs/preview.jpg">
<script src="js/graph.js"></script>
<script src="js/force.js"></script>
<script src="lib/swissgl.js"></script>
<script src="js/bloom.js"></script>
<script src="js/app.js"></script>
<script src="lib/dat.gui.min.js"></script>
<style>
body { margin: 0; background: #1a1a1a; overflow: hidden; }
canvas { display: block; width: 100vw; height: 100vh;}
</style>
</head>
<body>
<canvas></canvas>
<div id="status" style="position: absolute; bottom: 10px; left: 10px; color: white; font-family: monospace; z-index: 100;">status</div>
<script>
"use strict";
const canvas = document.querySelector('canvas');
const app = new App(canvas, { autonomous: true });
app.init();
</script>
</body>
</html>