CircleGeometry.html 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <script src="../../../list.js"></script>
  6. <script src="../../../page.js"></script>
  7. <link type="text/css" rel="stylesheet" href="../../../page.css" />
  8. </head>
  9. <body>
  10. <h1>[name]</h1>
  11. <div class="desc">CircleGeometry is a simple shape of Euclidean geometry, based on a number of
  12. segments (triangles) equidistant with a given radius from a central point and builded
  13. anti-clockwise from a start angle and a given circumference.
  14. </div>
  15. <h2>Constructor</h2>
  16. <h3>[name]([page:Float radius], [page:Integer segments], [page:Float thetaStart], [page:Float thetaLength])</h3>
  17. <div>
  18. radius — Radius of the circle, default = 50.<br />
  19. segments — Number of segments (triangles), minimum = 3, default = 8.<br />
  20. thetaStart — Start angle for first segment, default = 0 (three o'clock position).<br />
  21. thetaLength — Circumference of the circle, default = 2*Pi (360°).
  22. </div>
  23. <h2>Properties</h2>
  24. <h2>Methods</h2>
  25. <h2>Source</h2>
  26. [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
  27. </body>
  28. </html>