RectAreaLightHelper.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <base href="../../../" />
  6. <script src="list.js"></script>
  7. <script src="page.js"></script>
  8. <link type="text/css" rel="stylesheet" href="page.css" />
  9. </head>
  10. <body>
  11. [page:Object3D] &rarr;
  12. <h1>[name]</h1>
  13. <div class="desc">
  14. Creates a visual aid for a [page:RectAreaLight].
  15. </div>
  16. <h3>Example</h3>
  17. <code>
  18. var light = new THREE.RectAreaLight( 0xffffbb, 1.0, 5, 5 );
  19. var helper = new THREE.RectAreaLightHelper( light );
  20. scene.add( helper );
  21. </code>
  22. <h2>Constructor</h2>
  23. <h3>[name]( [page:RectAreaLight light] )</h3>
  24. <div>[page:RectAreaLight light] -- The light being visualized.</div>
  25. <h2>Properties</h2>
  26. <div>See the base [page:Object3D] class for common properties.</div>
  27. <h3>[property:RectAreaLight light]</h3>
  28. <div>Reference to the RectAreaLight being visualized.</div>
  29. <h2>Methods</h2>
  30. <div>See the base [page:Object3D] class for common methods.</div>
  31. <h3>[method:null dispose]()</h3>
  32. <div>Dispose of the rectAreaLightHelper.</div>
  33. <h3>[method:null update]()</h3>
  34. <div>Updates the helper to match the position and direction of the [page:.light].</div>
  35. <h2>Source</h2>
  36. [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
  37. </body>
  38. </html>