Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
erichlof authored May 1, 2024
1 parent f673944 commit 90fec7e
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions Whitted_RayTracing.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title> Classic Scene: The Compleat Angler, Whitted 1979 </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 - Classic Scene: The Compleat Angler, Whitted 1979</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/Whitted_RayTracing.js"> </script>

</body>
</html>

0 comments on commit 90fec7e

Please sign in to comment.