File tree Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+
4+ < head >
5+ < title > three.js PathTracing Renderer - Cheap Torus Alternative</ title >
6+ < meta charset ="utf-8 ">
7+ < meta name ="viewport " content ="width=device-width, user-scalable=no, initial-scale=1 ">
8+ < link href ="css/default.css " rel ="stylesheet ">
9+
10+ < script async src ="js/es-module-shims.js "> </ script >
11+ < script type ="importmap ">
12+ {
13+ "imports" : {
14+ "three" : "./js/three.module.min.js"
15+ }
16+ }
17+ </ script >
18+
19+ < script type ="module ">
20+ import * as THREE from 'three' ;
21+ window . THREE = THREE ;
22+ import Stats from './js/stats.module.js' ;
23+ window . Stats = Stats ;
24+ import GUI from './js/lil-gui.module.min.js' ;
25+ window . GUI = GUI ;
26+ </ script >
27+ </ head >
28+
29+ < body >
30+
31+ < div id ="container "> </ div >
32+ < div id ="info "> three.js PathTracing Renderer - Cheap Torus Alternative</ div >
33+
34+ < div id ="cameraInfo " style ="position:fixed; left:3%; bottom:2%; font-family:arial; color:rgb(255,255,255); ">
35+ </ div >
36+
37+ < script defer src ="js/FirstPersonCameraControls.js "> </ script >
38+ < script defer src ="js/MobileJoystickControls.js "> </ script >
39+ < script defer src ="js/PathTracingCommon.js "> </ script >
40+ < script defer src ="js/InitCommon.js "> </ script >
41+
42+ < script defer src ="js/Cheap_Torus.js "> </ script >
43+
44+ </ body >
45+
46+ </ html >
You can’t perform that action at this time.
0 commit comments