-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (81 loc) · 2.31 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<html>
<head>
<meta charset="utf-8">
<title>03 - Jigsaw Generator</title>
<link rel="stylesheet" href="wildcard.css">
<link rel="stylesheet" href="typography.css">
<link rel="stylesheet" href="controls.css">
<link rel="stylesheet" href="puzzle.css">
</head>
<body>
<svg id="puzzle" viewBox="0 0 800 800">
<g id="dots"></g>
<g id="lines"></g>
<g id="tabs"></g>
</svg>
<form class="controls">
<!--
<label>
Width
<input type="number" id="puzzleWidth" min="4" max="11" value="11" step="0.1">
</label>
<label>
Height
<input type="number" id="puzzleHeight" min="4" max="11" value="11" step="0.1">
</label>
-->
<label>
Bezel
<input type="range" id="bezel" min="0" max="90" value="10">
</label>
<label>
Piece Size
<input type="range" id="pieceSize" min="100" max="400" value="90" step="0.01">
</label>
<label>
Piece Noise
<input type="range" id="voronoise" min="0" max="4" value="0.78" step="0.01">
</label>
<label>
Noise Seed
<input type="range" id="seed" min="0" max="3.14" value="1.2" step="0.001">
</label>
<label>
Tab Length
<input type="range" id="offset" min="0" max="80" value="17" step="0.001">
</label>
<label>
Random Tab Size
<input type="range" id="wiggle" min="0" max="1" value="0" step="0.001">
</label>
<label>
Tab Width
<input type="range" id="tabWidth" min="10" max="200" value="15">
</label>
<label>
Interlock
<input type="range" id="overshoot" min="0" max="3" value="1.4" step="0.001">
</label>
<label>
Woggle
<input type="range" id="woggle" min="0" max="7" value="0" step="0.001">
</label>
<label>
Lead
<input type="range" id="lead" min="0" max="1" value="0.3" step="0.0001">
</label>
<label>
Taper
<input type="range" id="taper" min="0" max="1" value="1" step="0.001">
</label>
</form>
<button onclick="saveSVG()">EXPORT</button>
<script src="lib/voronoi/rhill-voronoi-core.min.js"></script>
<script src="lib/download/download.min.js"></script>
<script src="dom.js"></script>
<script src="controls.js"></script>
<script src="vec2.js"></script>
<script src="tabs.js"></script>
<script src="main.js"></script>
</body>
</html>