VertexNormalsHelper.html 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <!DOCTYPE html>
  2. <html lang="zh">
  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; [page:Line] &rarr;
  12. <h1>[name]</h1>
  13. <p class="desc">
  14. 渲染箭头辅助对象 [page:ArrowHelper arrows] 来模拟顶点的法线.
  15. 需要定义了法线缓存属性 [page:BufferAttribute custom attribute] 或
  16. 使用了 [page:Geometry.computeVertexNormals computeVertexNormals] 方法计算了顶点法线.<br /><br />
  17. 不像面法线辅助对象 [page:FaceNormalsHelper], 该辅助对象在 [page:BufferGeometry] 上也能正常运行.
  18. </p>
  19. <h2>例子</h2>
  20. <p>
  21. [example:webgl_helpers WebGL / helpers]
  22. </p>
  23. <code>
  24. var geometry = new THREE.BoxGeometry( 10, 10, 10, 2, 2, 2 );
  25. var material = new THREE.MeshBasicMaterial( { color: 0xff0000 } );
  26. var box = new THREE.Mesh( geometry, material );
  27. var helper = new THREE.VertexNormalsHelper( box, 2, 0x00ff00, 1 );
  28. scene.add( box );
  29. scene.add( helper );
  30. </code>
  31. <h2>构造函数</h2>
  32. <h3>[name]( [param:Object3D object], [param:Number size], [param:Hex color], [param:Number linewidth] )</h3>
  33. <p>
  34. [page:Object3D object] -- 要渲染顶点法线辅助的对象.<br />
  35. [page:Number size] -- (可选的) 箭头的长度. 默认为 1.<br />
  36. [page:Hex color] -- 16进制颜色值. 默认为 0xff0000.<br />
  37. [page:Number linewidth] -- (可选的) 箭头线段的宽度. 默认为 1.
  38. </p>
  39. <h2>属性</h2>
  40. <p>请到基类 [page:LineSegments] 页面查看公共属性.</p>
  41. <h3>[property:object matrixAutoUpdate]</h3>
  42. <p>
  43. 请查看 [page:Object3D.matrixAutoUpdate]. 这里设置为 *false* 表示辅助对象
  44. 使用对象的世界矩阵 [page:Object3D.matrixWorld matrixWorld].
  45. </p>
  46. <h3>[property:Object3D object]</h3>
  47. <p>被渲染顶点法线辅助的对象.</p>
  48. <h3>[property:Number size]</h3>
  49. <p>箭头的长度. 默认为 *1*.</p>
  50. <h2>方法</h2>
  51. <p>请到基类 [page:LineSegments] 页面查看公共方法.</p>
  52. <h3>[method:null update]()</h3>
  53. <p>基于对象的运动更新顶点法线辅助对象.</p>
  54. <h2>源码</h2>
  55. <p>
  56. [link:https://github.com/mrdoob/three.js/blob/master/examples/jsm/helpers/VertexNormalsHelper.js examples/jsm/helpers/VertexNormalsHelper.js]
  57. </p>
  58. </body>
  59. </html>