SVGRenderer.html 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. <h1>SVG渲染器([name])</h1>
  12. <div class="desc">
  13. <p>
  14. [name]被用于使用SVG来渲染几何数据,所产生的矢量图形在以下几个方面十分有用:
  15. </p>
  16. <ul>
  17. <li>动画标志(logo)或者图标(icon)</li>
  18. <li>可交互的2D或3D图表或图形</li>
  19. <li>交互式地图</li>
  20. <li>复杂的或包含动画的用户界面</li>
  21. </ul>
  22. <p>
  23. [name]具有很多优势。它产生清晰并且锐利的图像输出,它和实际视口分辨率无关。<br />
  24. SVG元素可以通过CSS来控制样式;并且由于它可以添加诸如标题或者描述文字之类的元数据(对于搜索引擎或者屏幕阅读器十分有用),因此它具有十分良好的可访问性。
  25. </p>
  26. <p>
  27. 然而,SVG也有一些十分重要的限制:
  28. </p>
  29. <ul>
  30. <li>没有高级的着色器</li>
  31. <li>不支持纹理</li>
  32. <li>不支持阴影</li>
  33. </ul>
  34. </div>
  35. <script>
  36. // iOS iframe auto-resize workaround
  37. if ( /(iPad|iPhone|iPod)/g.test( navigator.userAgent ) ) {
  38. var scene = document.getElementById( 'scene' );
  39. scene.style.width = getComputedStyle( scene ).width;
  40. scene.style.height = getComputedStyle( scene ).height;
  41. scene.setAttribute( 'scrolling', 'no' );
  42. }
  43. </script>
  44. <h2>示例</h2>
  45. <p>
  46. [example:svg_lines lines]<br />
  47. [example:svg_sandbox sandbox]
  48. </p>
  49. <h2>构造函数</h2>
  50. <h3>[name]()</h3>
  51. <h2>方法</h2>
  52. <h3>[method:null clear]()</h3>
  53. <p>
  54. 告诉渲染器来清除其绘图表面。
  55. </p>
  56. <h3>[method:null render]( [param:Scene scene], [param:Camera camera] )</h3>
  57. <p>
  58. 使用[page:Camera camera]来渲染一个[page:Scene scene]。
  59. </p>
  60. <h3>[method:null setClearColor]( [param:Color color], [param:number alpha] )</h3>
  61. <p>
  62. 设置clearColor(空白颜色)以及clearAlpha(空白Alpha)。
  63. </p>
  64. <h3>[method:null setPrecision]( [param:Number precision] )</h3>
  65. <p>
  66. 设置用于创建路径的数据的精度。
  67. </p>
  68. <h3>[method:null setQuality]()</h3>
  69. <p>
  70. 设置渲染质量。可能的值有*low*和*high*(默认值)。
  71. </p>
  72. <h3>[method:null setSize]( [param:Number width], [param:Number height] )</h3>
  73. <p>
  74. 改变渲染器尺寸为(width, height)。
  75. </p>
  76. <h2>源代码</h2>
  77. [link:https://github.com/mrdoob/three.js/blob/master/examples/js/[path].js examples/js/[path].js]
  78. </body>
  79. </html>