forked from erichlof/THREE.js-PathTracing-Renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bi-Directional_Difficult_Lighting.html
30 lines (24 loc) · 1.09 KB
/
Bi-Directional_Difficult_Lighting.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>three.js PathTracing Renderer - Difficult Lighting - Classic Test Scene</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"/>
</head>
<body>
<div id="container"> </div>
<div id="info">three.js PathTracing Renderer - Difficult Lighting - Classic Test Scene</div>
<div id="cameraInfo" style="position:fixed; left:3%; bottom:2%; font-family:arial; color:rgb(255,255,255);"></div>
<script src="js/three.min.js"> </script>
<script src="js/BufferGeometryUtils.js"> </script>
<script src="js/GLTFLoader.js"></script>
<script src="js/BVH_Acc_Structure_Iterative_Fast_Builder.js"> </script>
<script src="js/FirstPersonCameraControls.js"> </script>
<script src="js/MobileJoystickControls.js"> </script>
<script src="js/stats.min.js"> </script>
<script src="js/PathTracingCommon.js"> </script>
<script src="js/InitCommon.js"> </script>
<script src="js/Bi-Directional_Difficult_Lighting.js"> </script>
</body>
</html>