BoxHelper.html 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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; [page:LineSegments] &rarr;
  12. <h1>[name]</h1>
  13. <p class="desc">
  14. 用于图形化地展示对象世界轴心对齐的包围盒的辅助对象。The actual bounding box is handled with [page:Box3], this is just a visual helper for debugging.
  15. It can be automatically resized with the [page:BoxHelper.update] method when the object it's created from is transformed.
  16. 注意:要想能正常运行,目标对象必须包含 [page:Geometry] 或 [page:BufferGeometry] ,
  17. 所以当目标对象是精灵 [page:Sprite Sprites] 时将不能正常运行.
  18. </p>
  19. <h2>代码示例</h2>
  20. <code>
  21. var sphere = new THREE.SphereBufferGeometry();
  22. var object = new THREE.Mesh( sphere, new THREE.MeshBasicMaterial( 0xff0000 ) );
  23. var box = new THREE.BoxHelper( object, 0xffff00 );
  24. scene.add( box );
  25. </code>
  26. <h2>例子</h2>
  27. <p>
  28. [example:webgl_helpers WebGL / helpers]<br/>
  29. [example:webgl_loader_nrrd WebGL / loader / nrrd]<br/>
  30. [example:webgl_buffergeometry_drawrange WebGL / buffergeometry / drawrange]
  31. </p>
  32. <h2>构造函数</h2>
  33. <h3>[name]( [param:Object3D object], [param:Color color] )</h3>
  34. <p>
  35. [page:Object3D object] -- (可选的) 被展示世界轴心对齐的包围盒的对象.<br />
  36. [page:Color color] -- (可选的) 线框盒子的16进制颜色值. 默认为 0xffff00.<br /><br />
  37. 创建一个新的线框盒子包围指定的对象. 内部使用 [page:Box3.setFromObject]
  38. 方法来计算尺寸. 注意:此线框盒子将包围对象的所有子对象.
  39. </p>
  40. <h2>属性</h2>
  41. <p>请到基类 [page:LineSegments] 页面查看公共属性.</p>
  42. <h2>方法</h2>
  43. <p>请到基类 [page:LineSegments] 页面查看公共方法.</p>
  44. <h3>[method:null update]()</h3>
  45. <p>
  46. 更新辅助对象的几何体,与目标对象尺寸
  47. 保持一致, 包围目标对象所有子对象. 请查看 [page:Box3.setFromObject].
  48. </p>
  49. <h3>[method:BoxHelper setFromObject]( [param:Object3D object] )</h3>
  50. <p>
  51. [page:Object3D object] - 用于创建辅助对象的目标 [page:Object3D] 对象.<br /><br />
  52. 更新指定对象的线框盒子.
  53. </p>
  54. <h2>源码</h2>
  55. <p>
  56. [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
  57. </p>
  58. </body>
  59. </html>