-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 1.2 KB
/
Copy pathindex.html
File metadata and controls
27 lines (27 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta property="og:title" content="Pythagoras Tree" />
<meta property="og:description" content="A pythagoras tree, drawn using JS and Canvas." />
<meta property="og:url" content="https://ion6.com/demos/tree/" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://ion6.com/demos/tree/pythagoras.png" />
<title>Pythagoras Tree</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="stylesheet" href="pythagoras.css" type="text/css">
</head>
<body>
<header>
<h1>Pythagoras Tree</h1>
<p>Move the cursor anywhere within the canvas to change the tree stem's angle. Use the slider at the bottom to control the recursive depth of the fractal.</p>
</header>
<section><canvas><img src="http://ion6.com/demos/tree/pythagoras.png" /></canvas></section>
<footer>
<p>Written by <a href="https://github.com/ion6/pythagoras">William Powers</a>. If you'd like to reach me, email 'will' at this domain dot com.</p>
</footer>
<script src="point.js"></script>
<script src="pythagoras.js"></script>
<script src="render.js"></script>
</body>
</html>