threejs-lights-rectarea.html 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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 - RectArea</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. <script type="module">
  24. import * as THREE from './resources/threejs/r108/build/three.module.js';
  25. import {RectAreaLightUniformsLib} from './resources/threejs/r108/examples/jsm/lights/RectAreaLightUniformsLib.js';
  26. import {OrbitControls} from './resources/threejs/r108/examples/jsm/controls/OrbitControls.js';
  27. import { GUI } from '../3rdparty/dat.gui.module.js';
  28. function main() {
  29. const canvas = document.querySelector('#c');
  30. const renderer = new THREE.WebGLRenderer({canvas});
  31. const fov = 45;
  32. const aspect = 2; // the canvas default
  33. const near = 0.1;
  34. const far = 100;
  35. const camera = new THREE.PerspectiveCamera(fov, aspect, near, far);
  36. camera.position.set(0, 10, 20);
  37. const controls = new OrbitControls(camera, canvas);
  38. controls.target.set(0, 5, 0);
  39. controls.update();
  40. const scene = new THREE.Scene();
  41. scene.background = new THREE.Color('black');
  42. {
  43. const planeSize = 40;
  44. const loader = new THREE.TextureLoader();
  45. const texture = loader.load('resources/images/checker.png');
  46. texture.wrapS = THREE.RepeatWrapping;
  47. texture.wrapT = THREE.RepeatWrapping;
  48. texture.magFilter = THREE.NearestFilter;
  49. const repeats = planeSize / 2;
  50. texture.repeat.set(repeats, repeats);
  51. const planeGeo = new THREE.PlaneBufferGeometry(planeSize, planeSize);
  52. const planeMat = new THREE.MeshStandardMaterial({
  53. map: texture,
  54. side: THREE.DoubleSide,
  55. });
  56. const mesh = new THREE.Mesh(planeGeo, planeMat);
  57. mesh.rotation.x = Math.PI * -.5;
  58. scene.add(mesh);
  59. }
  60. {
  61. const cubeSize = 4;
  62. const cubeGeo = new THREE.BoxBufferGeometry(cubeSize, cubeSize, cubeSize);
  63. const cubeMat = new THREE.MeshStandardMaterial({color: '#8AC'});
  64. const mesh = new THREE.Mesh(cubeGeo, cubeMat);
  65. mesh.position.set(cubeSize + 1, cubeSize / 2, 0);
  66. scene.add(mesh);
  67. }
  68. {
  69. const sphereRadius = 3;
  70. const sphereWidthDivisions = 32;
  71. const sphereHeightDivisions = 16;
  72. const sphereGeo = new THREE.SphereBufferGeometry(sphereRadius, sphereWidthDivisions, sphereHeightDivisions);
  73. const sphereMat = new THREE.MeshStandardMaterial({color: '#CA8'});
  74. const mesh = new THREE.Mesh(sphereGeo, sphereMat);
  75. mesh.position.set(-sphereRadius - 1, sphereRadius + 2, 0);
  76. scene.add(mesh);
  77. }
  78. class ColorGUIHelper {
  79. constructor(object, prop) {
  80. this.object = object;
  81. this.prop = prop;
  82. }
  83. get value() {
  84. return `#${this.object[this.prop].getHexString()}`;
  85. }
  86. set value(hexString) {
  87. this.object[this.prop].set(hexString);
  88. }
  89. }
  90. class DegRadHelper {
  91. constructor(obj, prop) {
  92. this.obj = obj;
  93. this.prop = prop;
  94. }
  95. get value() {
  96. return THREE.Math.radToDeg(this.obj[this.prop]);
  97. }
  98. set value(v) {
  99. this.obj[this.prop] = THREE.Math.degToRad(v);
  100. }
  101. }
  102. function makeXYZGUI(gui, vector3, name, onChangeFn) {
  103. const folder = gui.addFolder(name);
  104. folder.add(vector3, 'x', -10, 10).onChange(onChangeFn);
  105. folder.add(vector3, 'y', 0, 10).onChange(onChangeFn);
  106. folder.add(vector3, 'z', -10, 10).onChange(onChangeFn);
  107. folder.open();
  108. }
  109. {
  110. const color = 0xFFFFFF;
  111. const intensity = 5;
  112. const width = 12;
  113. const height = 4;
  114. const light = new THREE.RectAreaLight(color, intensity, width, height);
  115. light.position.set(0, 10, 0);
  116. light.rotation.x = THREE.Math.degToRad(-90);
  117. scene.add(light);
  118. const helper = new THREE.RectAreaLightHelper(light);
  119. light.add(helper);
  120. function updateLight() {
  121. helper.update();
  122. }
  123. const gui = new GUI();
  124. gui.addColor(new ColorGUIHelper(light, 'color'), 'value').name('color');
  125. gui.add(light, 'intensity', 0, 10, 0.01);
  126. gui.add(light, 'width', 0, 20).onChange(updateLight);
  127. gui.add(light, 'height', 0, 20).onChange(updateLight);
  128. gui.add(new DegRadHelper(light.rotation, 'x'), 'value', -180, 180).name('x rotation').onChange(updateLight);
  129. gui.add(new DegRadHelper(light.rotation, 'y'), 'value', -180, 180).name('y rotation').onChange(updateLight);
  130. gui.add(new DegRadHelper(light.rotation, 'z'), 'value', -180, 180).name('z rotation').onChange(updateLight);
  131. makeXYZGUI(gui, light.position, 'position', updateLight);
  132. }
  133. function resizeRendererToDisplaySize(renderer) {
  134. const canvas = renderer.domElement;
  135. const width = canvas.clientWidth;
  136. const height = canvas.clientHeight;
  137. const needResize = canvas.width !== width || canvas.height !== height;
  138. if (needResize) {
  139. renderer.setSize(width, height, false);
  140. }
  141. return needResize;
  142. }
  143. function render() {
  144. if (resizeRendererToDisplaySize(renderer)) {
  145. const canvas = renderer.domElement;
  146. camera.aspect = canvas.clientWidth / canvas.clientHeight;
  147. camera.updateProjectionMatrix();
  148. }
  149. renderer.render(scene, camera);
  150. requestAnimationFrame(render);
  151. }
  152. requestAnimationFrame(render);
  153. }
  154. main();
  155. </script>
  156. </html>