halfway to graphv_webgl replacing wall

This commit is contained in:
cqc
2022-08-31 12:32:44 -05:00
parent c40e725978
commit 7460b8f793
7 changed files with 793 additions and 514 deletions

35
index.html Normal file
View File

@ -0,0 +1,35 @@
<!DOCTYPE>
<html>
<head>
<style>
html, body {
width: 100%;
height: 100%;
overflow: hidden;
margin: 0;
padding: 0;
}
div {
display: flex;
align-items: center;
justify-content: center;
}
canvas {
width: 400px;
height: 400px;
}
</style>
</head>
<body>
<div>
<canvas id='canvas'></canvas>
</div>
</body>
<script
type='text/javascript'
defer
src='_build/default/boot_js.bc.js'>
</script>
</html>