LatheGeometry.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="utf-8" />
  5. <base href="../../../" />
  6. <script src="page.js"></script>
  7. <link type="text/css" rel="stylesheet" href="page.css" />
  8. </head>
  9. <body>
  10. [page:BufferGeometry] &rarr;
  11. <h1>车削缓冲几何体([name])</h1>
  12. <p class="desc">创建具有轴对称性的网格,比如花瓶。车削绕着Y轴来进行旋转。</p>
  13. <iframe id="scene" src="scenes/geometry-browser.html#LatheGeometry"></iframe>
  14. <script>
  15. // iOS iframe auto-resize workaround
  16. if ( /(iPad|iPhone|iPod)/g.test( navigator.userAgent ) ) {
  17. const scene = document.getElementById( 'scene' );
  18. scene.style.width = getComputedStyle( scene ).width;
  19. scene.style.height = getComputedStyle( scene ).height;
  20. scene.setAttribute( 'scrolling', 'no' );
  21. }
  22. </script>
  23. <h2>代码示例</h2>
  24. <code>
  25. const points = [];
  26. for ( let i = 0; i < 10; i ++ ) {
  27. points.push( new THREE.Vector2( Math.sin( i * 0.2 ) * 10 + 5, ( i - 5 ) * 2 ) );
  28. }
  29. const geometry = new THREE.LatheGeometry( points );
  30. const material = new THREE.MeshBasicMaterial( { color: 0xffff00 } );
  31. const lathe = new THREE.Mesh( geometry, material );
  32. scene.add( lathe );
  33. </code>
  34. <h2>构造器</h2>
  35. <h3>[name]([param:Array points], [param:Integer segments], [param:Float phiStart], [param:Float phiLength])</h3>
  36. <p>
  37. points — 一个Vector2对象数组。每个点的X坐标必须大于0。 Default is an array with (0,-0.5), (0.5,0) and (0,0.5) which creates a simple diamond shape.<br />
  38. segments — 要生成的车削几何体圆周分段的数量,默认值是12。<br />
  39. phiStart — 以弧度表示的起始角度,默认值为0。<br />
  40. phiLength — 车削部分的弧度(0-2PI)范围,2PI将是一个完全闭合的、完整的车削几何体,小于2PI是部分的车削。默认值是2PI。
  41. </p>
  42. <p>
  43. 基于参数创建一个LatheGeometry。
  44. </p>
  45. <h2>属性</h2>
  46. <p>共有属性请参见其基类[page:BufferGeometry]。</p>
  47. <h3>[property:Object parameters]</h3>
  48. <p>
  49. 一个包含着构造函数中每个参数的对象。在对象实例化之后,对该属性的任何修改都不会改变这个几何体。
  50. </p>
  51. <h2>方法(Methods)</h2>
  52. <p>共有方法请参见其基类[page:BufferGeometry]。</p>
  53. <h2>源代码</h2>
  54. <p>
  55. [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
  56. </p>
  57. </body>
  58. </html>