#
luxiaotao1123
2023-03-21 059270c12f452fcc3344b826f35295fd7c20906e
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
<!DOCTYPE html>
<html lang="en">
    <head>
        <title>three.js PathTracing Renderer - Terrain Rendering</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="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/FirstPersonCameraControls.js"> </script>
        <script src="js/MobileJoystickControls.js"> </script>
        <script src="js/PathTracingCommon.js"> </script>
        <script src="js/InitCommon.js"> </script>
 
        <script src="js/Terrain_Rendering.js"> </script>
 
    </body>
</html>