lights-rectarea.html 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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="importmap">
  24. {
  25. "imports": {
  26. "three": "../../build/three.module.js",
  27. "three/addons/": "../../examples/jsm/"
  28. }
  29. }
  30. </script>
  31. <script type="module">
  32. import * as THREE from 'three';
  33. import { OrbitControls } from 'three/addons/controls/OrbitControls.js';
  34. import { RectAreaLightUniformsLib } from 'three/addons/lights/RectAreaLightUniformsLib.js';
  35. import { RectAreaLightHelper } from 'three/addons/helpers/RectAreaLightHelper.js';
  36. import { GUI } from 'three/addons/libs/lil-gui.module.min.js';
  37. function main() {
  38. const canvas = document.querySelector( '#c' );
  39. const renderer = new THREE.WebGLRenderer( { antialias: true, canvas } );
  40. RectAreaLightUniformsLib.init();
  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. texture.colorSpace = THREE.SRGBColorSpace;
  60. const repeats = planeSize / 2;
  61. texture.repeat.set( repeats, repeats );
  62. const planeGeo = new THREE.PlaneGeometry( planeSize, planeSize );
  63. const planeMat = new THREE.MeshStandardMaterial( {
  64. map: texture,
  65. side: THREE.DoubleSide,
  66. } );
  67. const mesh = new THREE.Mesh( planeGeo, planeMat );
  68. mesh.rotation.x = Math.PI * - .5;
  69. scene.add( mesh );
  70. }
  71. {
  72. const cubeSize = 4;
  73. const cubeGeo = new THREE.BoxGeometry( cubeSize, cubeSize, cubeSize );
  74. const cubeMat = new THREE.MeshStandardMaterial( { color: '#8AC' } );
  75. const mesh = new THREE.Mesh( cubeGeo, cubeMat );
  76. mesh.position.set( cubeSize + 1, cubeSize / 2, 0 );
  77. scene.add( mesh );
  78. }
  79. {
  80. const sphereRadius = 3;
  81. const sphereWidthDivisions = 32;
  82. const sphereHeightDivisions = 16;
  83. const sphereGeo = new THREE.SphereGeometry( sphereRadius, sphereWidthDivisions, sphereHeightDivisions );
  84. const sphereMat = new THREE.MeshStandardMaterial( { color: '#CA8' } );
  85. const mesh = new THREE.Mesh( sphereGeo, sphereMat );
  86. mesh.position.set( - sphereRadius - 1, sphereRadius + 2, 0 );
  87. scene.add( mesh );
  88. }
  89. class ColorGUIHelper {
  90. constructor( object, prop ) {
  91. this.object = object;
  92. this.prop = prop;
  93. }
  94. get value() {
  95. return `#${this.object[ this.prop ].getHexString()}`;
  96. }
  97. set value( hexString ) {
  98. this.object[ this.prop ].set( hexString );
  99. }
  100. }
  101. class DegRadHelper {
  102. constructor( obj, prop ) {
  103. this.obj = obj;
  104. this.prop = prop;
  105. }
  106. get value() {
  107. return THREE.MathUtils.radToDeg( this.obj[ this.prop ] );
  108. }
  109. set value( v ) {
  110. this.obj[ this.prop ] = THREE.MathUtils.degToRad( v );
  111. }
  112. }
  113. function makeXYZGUI( gui, vector3, name, onChangeFn ) {
  114. const folder = gui.addFolder( name );
  115. folder.add( vector3, 'x', - 10, 10 ).onChange( onChangeFn );
  116. folder.add( vector3, 'y', 0, 10 ).onChange( onChangeFn );
  117. folder.add( vector3, 'z', - 10, 10 ).onChange( onChangeFn );
  118. folder.open();
  119. }
  120. {
  121. const color = 0xFFFFFF;
  122. const intensity = 5;
  123. const width = 12;
  124. const height = 4;
  125. const light = new THREE.RectAreaLight( color, intensity, width, height );
  126. light.position.set( 0, 10, 0 );
  127. light.rotation.x = THREE.MathUtils.degToRad( - 90 );
  128. scene.add( light );
  129. const helper = new RectAreaLightHelper( light );
  130. light.add( helper );
  131. const gui = new GUI();
  132. gui.addColor( new ColorGUIHelper( light, 'color' ), 'value' ).name( 'color' );
  133. gui.add( light, 'intensity', 0, 10, 0.01 );
  134. gui.add( light, 'width', 0, 20 );
  135. gui.add( light, 'height', 0, 20 );
  136. gui.add( new DegRadHelper( light.rotation, 'x' ), 'value', - 180, 180 ).name( 'x rotation' );
  137. gui.add( new DegRadHelper( light.rotation, 'y' ), 'value', - 180, 180 ).name( 'y rotation' );
  138. gui.add( new DegRadHelper( light.rotation, 'z' ), 'value', - 180, 180 ).name( 'z rotation' );
  139. makeXYZGUI( gui, light.position, 'position' );
  140. }
  141. function resizeRendererToDisplaySize( renderer ) {
  142. const canvas = renderer.domElement;
  143. const width = canvas.clientWidth;
  144. const height = canvas.clientHeight;
  145. const needResize = canvas.width !== width || canvas.height !== height;
  146. if ( needResize ) {
  147. renderer.setSize( width, height, false );
  148. }
  149. return needResize;
  150. }
  151. function render() {
  152. if ( resizeRendererToDisplaySize( renderer ) ) {
  153. const canvas = renderer.domElement;
  154. camera.aspect = canvas.clientWidth / canvas.clientHeight;
  155. camera.updateProjectionMatrix();
  156. }
  157. renderer.render( scene, camera );
  158. requestAnimationFrame( render );
  159. }
  160. requestAnimationFrame( render );
  161. }
  162. main();
  163. </script>
  164. </html>