aperiodic-monotile-reference/index.html

76 lines
3.1 KiB
HTML
Raw Normal View History

2023-07-13 08:12:36 +01:00
<!doctype html>
<html lang="en">
<head>
<title>Aperiodic monotile</title>
2023-07-13 08:12:36 +01:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<script src="script.js?t=202505071454" defer></script>
2023-07-13 08:12:36 +01:00
<style>
* {
box-sizing: border-box;
}
2023-07-13 08:12:36 +01:00
svg {
width: 100%;
height: 100%;
2023-07-13 08:12:36 +01:00
border: 1px solid black;
touch-action: pan-x pan-y;
2023-07-13 08:12:36 +01:00
}
body {
overscroll-behavior: contain;
2023-07-13 08:12:36 +01:00
padding: 0;
margin: 0;
display: grid;
height: 100svh;
2023-07-13 08:12:36 +01:00
grid-template:
"drawing" 80svh
"controls" min-content
2023-07-13 08:12:36 +01:00
/ 1fr;
}
textarea {
width: 100%;
height: 20em;
}
.tile {
color: #ccc;
}
.tile.highlight {
color: hsl(240,100%,80%);
}
2023-07-13 08:12:36 +01:00
</style>
</head>
<body>
<section id="drawing">
<svg viewBox="0 0 190 195" xmlns="http://www.w3.org/2000/svg">
2023-07-13 08:12:36 +01:00
<defs>
<path id="spectre"
d="M 0 1 C -0.3 0.5 0.3 0.5 0 0 C 0.5 -0.3 0.5 0.3 1 0 C 0.9901923788646685 -0.5830127018922193 1.5098076211353315 -0.2830127018922193 1.5 -0.8660254037844386 C 2.0830127018922195 -0.8758330249197702 1.7830127018922195 -0.356217782649107 2.366025403784439 -0.36602540378443865 C 2.6660254037844386 0.13397459621556135 2.066025403784439 0.13397459621556135 2.366025403784439 0.6339745962155614 C 2.866025403784439 0.3339745962155614 2.866025403784439 0.9339745962155614 3.366025403784439 0.6339745962155614 C 3.8758330249197703 0.9169872981077808 3.3562177826491073 1.2169872981077807 3.866025403784439 1.5 C 3.5830127018922195 2.0098076211353315 3.2830127018922197 1.4901923788646685 3 2 C 2.4169872981077805 2.0098076211353315 2.7169872981077803 1.4901923788646685 2.133974596215561 1.5 C 2.143782217350893 2.0830127018922195 1.6241669750802294 1.7830127018922197 1.6339745962155614 2.3660254037844393 C 1.1339745962155614 2.666025403784439 1.1339745962155614 2.0660254037844394 0.6339745962155614 2.3660254037844393 C 0.1339745962155614 2.666025403784439 0.1339745962155614 2.0660254037844394 -0.3660254037844386 2.3660254037844393 C -0.8758330249197706 2.08301270189222 -0.35621778264910703 1.7830127018922195 -0.866025403784439 1.5 C -0.5830127018922195 0.9901923788646683 -0.2830127018922195 1.5098076211353317 0 1"
stroke="black"
2023-07-13 08:12:36 +01:00
stroke-width="0.1"
stroke-opacity="1"
2023-07-13 08:12:36 +01:00
stroke-linejoin="round"
fill="currentColor"></path>
</defs>
<g id="board"></g>
2023-07-13 08:12:36 +01:00
</svg>
</section>
<section id="controls">
<fieldset>
<legend>Viewbox</legend>
<label for="ox">ox</label>
<input type="number" min="-500" max="500" value="0" id="ox">
<label for="oy">oy</label>
<input type="number" min="-500" max="500" value="0" id="oy">
<label for="scale">scale</label>
<input type="range" min="1" max="100" value="19" id="scale">
2023-07-13 08:12:36 +01:00
<label for="num_iterations">Number of iterations</label>
<input type="number" min="1" max="5" value="2" id="num_iterations">
2023-07-13 08:12:36 +01:00
</fieldset>
</section>
</body>
</html>