-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabsorption-6.html
More file actions
34 lines (34 loc) · 1.05 KB
/
absorption-6.html
File metadata and controls
34 lines (34 loc) · 1.05 KB
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>
<html lang="">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Absorption Simulation - Simplified Flow</title>
<style>
html,
body {
overflow: hidden;
height: 100%;
margin: 0;
padding: 0;
background-color: black;
}
#canvas-div {
width: 100%;
height: 100%;
}
</style>
<!-- Include PixiJS -->
<script src="https://pixijs.download/v7.2.4/pixi.js"></script>
<!-- Include additional scripts if needed -->
<script src="rect.js"></script>
<script src="quadtree.js"></script>
</head>
<body>
<div id="canvas-div"></div>
<!-- Add debug container -->
<div id="debug-container"></div>
<!-- Load the main script -->
<script type="module" src="absorption-6-simplified.js"></script>
</body>
</html>