-
Notifications
You must be signed in to change notification settings - Fork 1
/
Ray_Tracer_Challenge.html
41 lines (33 loc) · 1.1 KB
/
Ray_Tracer_Challenge.html
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
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<title> The Ray Tracer Challenge </title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1">
<link href="css/default.css" rel="stylesheet"/>
<script type="importmap">
{
"imports": {
"three": "./js/three.module.min.js"
}
}
</script>
<script type="module">
import * as THREE from 'three';
window.THREE = THREE;
import Stats from './js/stats.module.js';
window.Stats = Stats;
import GUI from './js/lil-gui.module.min.js';
window.GUI = GUI;
</script>
</head>
<body>
<div id="container"> </div>
<div id="info">three.js RayTracing Renderer - The Ray Tracer Challenge - Dynamic Scene (menu ->)</div>
<div id="cameraInfo" style="position:fixed; left:3%; bottom:2%; font-family:arial; color:rgb(255,255,255);"></div>
<script defer src="js/MobileJoystickControls.js"> </script>
<script defer src="js/RayTracingCommon.js"> </script>
<script defer src="js/InitCommon.js"> </script>
<script defer src="js/Ray_Tracer_Challenge.js"> </script>
</body>
</html>