-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (30 loc) · 1.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
<!DOCTYPE html>
<head>
<title>Squished Circle Packing</title>
<link rel="stylesheet" href="style.css">
<script src="https://d3js.org/d3.v7.min.js" defer></script>
<script src="js/Constrainautor.js" defer></script>
<script src="https://cdn.jsdelivr.net/gh/kchapelier/poisson-disk-sampling@2.2.3/build/poisson-disk-sampling.min.js" defer></script>
<script src="js/Functions.js" defer></script>
<script src="js/Squished_Circles.js" defer></script>
<script src="js/Utils.js" defer></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Martel:wght@800&display=swap" rel="stylesheet">
</head>
<body>
<div class="header">
<h1>Squished Circle Packing</h1>
</div>
<div class="inputs-container">
<div class="checkbox-container">
<p>Show Triangulation</p> <input id="delaunay" type="checkbox" name="checkbox" />
</div>
<button id="refresh">Random Values</button>
<div class="text-container">
<p>Values</p> <input type="text" id="values" placeholder="Ex: 55, 45, 140, 32">
<button id="submit-values">Submit</button>
</div>
</div>
</body>
</html>