Skip to content

Commit

Permalink
add repro
Browse files Browse the repository at this point in the history
  • Loading branch information
gkjohnson committed Oct 1, 2024
1 parent d613dc0 commit be17769
Show file tree
Hide file tree
Showing 2 changed files with 422 additions and 0 deletions.
47 changes: 47 additions & 0 deletions example/3dtex_repro.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html>
<head>
<title>three-mesh-bvh - Fast SDF Generation</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">

<style type="text/css">
html, body {
padding: 0;
margin: 0;
overflow: hidden;
font-family: monospace;
background-color: #440727;
}

canvas {
width: 100%;
height: 100%;
}

#output {
color: #ffffff;
position: absolute;
left: 10px;
bottom: 10px;
white-space: pre;
}

#info {
position: absolute;
top: 0;
width: 100%;
color: white;
font-family: monospace;
text-align: center;
padding: 5px 0;
}

a {
color: white;
}
</style>
</head>
<body>
<script type="module" src="./3dtex_repro.js"></script>
</body>
</html>
Loading

0 comments on commit be17769

Please sign in to comment.