Cylindrical.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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>[name]</h1>
  12. <div class="desc">A point's cylindrical coordinates.</div>
  13. <h2>Constructor</h2>
  14. <h3>[name]( [page:Float radius], [page:Float theta], [page:Float y] )</h3>
  15. <div>
  16. radius -- [page:Float] distance from the origin to a point in the x-z plane<br />
  17. theta -- [page:Float] counterclockwise angle in the x-z plane measured in radians from the positive z-axis<br />
  18. y -- [page:Float] height above the x-z plane
  19. </div>
  20. <h2>Properties</h2>
  21. <h3>[property:Float radius]</h3>
  22. <h3>[property:Float theta]</h3>
  23. <h3>[property:Float y]</h3>
  24. <h2>Methods</h2>
  25. <h3>[method:Cylindrical set]( [page:Float radius], [page:Float theta], [page:Float y] ) [page:Cylindrical this]</h3>
  26. <div>
  27. Sets values of this cylindrical's component coordinates.
  28. </div>
  29. <h3>[method:Cylindrical copy]( [page:Cylindrical c] ) [page:Cylindrical this]</h3>
  30. <div>
  31. Copies value of *c* to this cylindrical.
  32. </div>
  33. <h3>[method:Cylindrical clone]() [page:Cylindrical this]</h3>
  34. <div>
  35. Clones this cylindrical.
  36. </div>
  37. <h3>[method:Cylindrical setFromVector3]( [page:Vector3 v] ) [page:Cylindrical this]</h3>
  38. <div>
  39. Sets this object from the vector *v*.
  40. </div>
  41. <h2>Source</h2>
  42. [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
  43. </body>
  44. </html>