scenes/webgl-comparison/index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ray Tracing Example</title>
<script src="https://cdn.jsdelivr.net/npm/three@0.108.0/build/three.js"></script>
<script src="https://cdn.jsdelivr.net/npm/three@0.108.0/examples/js/loaders/GLTFLoader.js"></script>
<script src="https://cdn.jsdelivr.net/npm/three@0.108.0/examples/js/controls/OrbitControls.js"></script>
<script src="https://cdn.jsdelivr.net/npm/three@0.108.0/examples/js/loaders/RGBELoader.js"></script>
<script src="https://cdn.jsdelivr.net/npm/three@0.108.0/examples/js/loaders/EquirectangularToCubeGenerator.js"></script>
<script src="https://cdn.jsdelivr.net/npm/three@0.108.0/examples/js/libs/stats.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/three@0.108.0/examples/js/libs/dat.gui.min.js"></script>
<script src="/ray-tracing-renderer/build/RayTracingRenderer.js"></script>
<style>
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
canvas {
display: block;
}
#loading {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
</style>
</head>
<body>
<h1 id="loading">Loading...</h1>
<script src="main.js"></script>
</body>
</html>