-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
28 lines (23 loc) · 939 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
28
<html>
<head>
<title>I AM A SMOKETEST BURN BABY BURN</title>
</head>
<body>
<canvas id="example" width="100" height="100">
This text is displayed if your browser does not support HTML5 Canvas.
</canvas>
<script type="text/javascript" src="direction.js"></script>
<script type="text/javascript" src="bitmap.js"></script>
<script type="text/javascript" src="path.js"></script>
<script type="text/javascript" src="drafter.js"></script>
<script type="text/javascript" src="vector.js"></script>
<script type="text/javascript" src="straightener-naive.js"></script>
<script type="text/javascript" src="straightener-complex.js"></script>
<script type="text/javascript">
Straightener = StraightenerComplex;
</script>
<script type="text/javascript" src="polygon.js"></script>
<script type="text/javascript" src="pathbuilder.js"></script>
<script type="text/javascript" src="potrace.js"></script>
</body>
</html>