lights-point.html 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <!-- Licensed under a BSD license. See license.html for license -->
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
  7. <title>Three.js - Lights - Point</title>
  8. <style>
  9. html, body {
  10. margin: 0;
  11. height: 100%;
  12. }
  13. #c {
  14. width: 100%;
  15. height: 100%;
  16. display: block;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <canvas id="c"></canvas>
  22. </body>
  23. <!-- Import maps polyfill -->
  24. <!-- Remove this when import maps will be widely supported -->
  25. <script async src="https://unpkg.com/[email protected]/dist/es-module-shims.js"></script>
  26. <script type="importmap">
  27. {
  28. "imports": {
  29. "three": "../../build/three.module.js",
  30. "three/addons/": "../../examples/jsm/"
  31. }
  32. }
  33. </script>
  34. <script type="module">
  35. import * as THREE from 'three';
  36. import {OrbitControls} from 'three/addons/controls/OrbitControls.js';
  37. import {GUI} from 'three/addons/libs/lil-gui.module.min.js';
  38. function main() {
  39. const canvas = document.querySelector('#c');
  40. const renderer = new THREE.WebGLRenderer({antialias: true, canvas});
  41. const fov = 45;
  42. const aspect = 2; // the canvas default
  43. const near = 0.1;
  44. const far = 100;
  45. const camera = new THREE.PerspectiveCamera(fov, aspect, near, far);
  46. camera.position.set(0, 10, 20);
  47. const controls = new OrbitControls(camera, canvas);
  48. controls.target.set(0, 5, 0);
  49. controls.update();
  50. const scene = new THREE.Scene();
  51. scene.background = new THREE.Color('black');
  52. {
  53. const planeSize = 40;
  54. const loader = new THREE.TextureLoader();
  55. const texture = loader.load('resources/images/checker.png');
  56. texture.wrapS = THREE.RepeatWrapping;
  57. texture.wrapT = THREE.RepeatWrapping;
  58. texture.magFilter = THREE.NearestFilter;
  59. const repeats = planeSize / 2;
  60. texture.repeat.set(repeats, repeats);
  61. const planeGeo = new THREE.PlaneGeometry(planeSize, planeSize);
  62. const planeMat = new THREE.MeshPhongMaterial({
  63. map: texture,
  64. side: THREE.DoubleSide,
  65. });
  66. const mesh = new THREE.Mesh(planeGeo, planeMat);
  67. mesh.rotation.x = Math.PI * -.5;
  68. scene.add(mesh);
  69. }
  70. {
  71. const cubeSize = 4;
  72. const cubeGeo = new THREE.BoxGeometry(cubeSize, cubeSize, cubeSize);
  73. const cubeMat = new THREE.MeshPhongMaterial({color: '#8AC'});
  74. const mesh = new THREE.Mesh(cubeGeo, cubeMat);
  75. mesh.position.set(cubeSize + 1, cubeSize / 2, 0);
  76. scene.add(mesh);
  77. }
  78. {
  79. const sphereRadius = 3;
  80. const sphereWidthDivisions = 32;
  81. const sphereHeightDivisions = 16;
  82. const sphereGeo = new THREE.SphereGeometry(sphereRadius, sphereWidthDivisions, sphereHeightDivisions);
  83. const sphereMat = new THREE.MeshPhongMaterial({color: '#CA8'});
  84. const mesh = new THREE.Mesh(sphereGeo, sphereMat);
  85. mesh.position.set(-sphereRadius - 1, sphereRadius + 2, 0);
  86. scene.add(mesh);
  87. }
  88. class ColorGUIHelper {
  89. constructor(object, prop) {
  90. this.object = object;
  91. this.prop = prop;
  92. }
  93. get value() {
  94. return `#${this.object[this.prop].getHexString()}`;
  95. }
  96. set value(hexString) {
  97. this.object[this.prop].set(hexString);
  98. }
  99. }
  100. function makeXYZGUI(gui, vector3, name, onChangeFn) {
  101. const folder = gui.addFolder(name);
  102. folder.add(vector3, 'x', -10, 10).onChange(onChangeFn);
  103. folder.add(vector3, 'y', 0, 10).onChange(onChangeFn);
  104. folder.add(vector3, 'z', -10, 10).onChange(onChangeFn);
  105. folder.open();
  106. }
  107. {
  108. const color = 0xFFFFFF;
  109. const intensity = 1;
  110. const light = new THREE.PointLight(color, intensity);
  111. light.position.set(0, 10, 0);
  112. scene.add(light);
  113. const helper = new THREE.PointLightHelper(light);
  114. scene.add(helper);
  115. function updateLight() {
  116. helper.update();
  117. }
  118. const gui = new GUI();
  119. gui.addColor(new ColorGUIHelper(light, 'color'), 'value').name('color');
  120. gui.add(light, 'intensity', 0, 2, 0.01);
  121. gui.add(light, 'distance', 0, 40).onChange(updateLight);
  122. makeXYZGUI(gui, light.position, 'position');
  123. }
  124. function resizeRendererToDisplaySize(renderer) {
  125. const canvas = renderer.domElement;
  126. const width = canvas.clientWidth;
  127. const height = canvas.clientHeight;
  128. const needResize = canvas.width !== width || canvas.height !== height;
  129. if (needResize) {
  130. renderer.setSize(width, height, false);
  131. }
  132. return needResize;
  133. }
  134. function render() {
  135. if (resizeRendererToDisplaySize(renderer)) {
  136. const canvas = renderer.domElement;
  137. camera.aspect = canvas.clientWidth / canvas.clientHeight;
  138. camera.updateProjectionMatrix();
  139. }
  140. renderer.render(scene, camera);
  141. requestAnimationFrame(render);
  142. }
  143. requestAnimationFrame(render);
  144. }
  145. main();
  146. </script>
  147. </html>