Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions example/gaussianSplatsRaytracing.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html>
<head>
<title>three-mesh-bvh - Gaussian Splats Raytracing</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: #000;
}

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>
<div id="info">
Gaussian splats raytracing.
</div>
<div id="output"></div>
<script type="module" src="./gaussianSplatsRaytracing.js"></script>
</body>
</html>
Loading