blob: 5d42dec3b0f0ee7322a8e9b365ef917500615943 (
plain) (
blame)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flexagon Simulation</title>
<style>
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #f0f0f0;
}
canvas {
border: 1px solid #ccc;
background: white;
}
</style>
</head>
<body>
<canvas id="flexagonCanvas"></canvas>
<script src="flexagon.js"></script>
</body>
</html>
|