Cylindrical.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!DOCTYPE html>
  2. <html lang="ar">
  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 class="rtl">
  10. <h1>[name]</h1>
  11. <p class="desc">
  12. نقطة
  13. [link:https://en.wikipedia.org/wiki/Cylindrical_coordinate_system الإحداثيات الاسطوانية].
  14. </p>
  15. <h2>المنشئ (Constructor)</h2>
  16. <h3>
  17. [name]( [param:Float radius], [param:Float theta], [param:Float y] )
  18. </h3>
  19. <p>
  20. [page:Float radius] - المسافة من المبدأ إلى نقطة في المستوى x-z. الافتراضي هو `1.0`.<br />
  21. [page:Float theta] - الزاوية عكس عقارب الساعة في المستوى x-z مقاسة بالراديان من المحور z الموجب. الافتراضي هو `0`.<br />
  22. [page:Float y] - الارتفاع فوق المستوى x-z. الافتراضي هو `0`.
  23. </p>
  24. <h2>الخصائص (Properties)</h2>
  25. <h3>[property:Float radius]</h3>
  26. <h3>[property:Float theta]</h3>
  27. <h3>[property:Float y]</h3>
  28. <h2>الطرق (Methods)</h2>
  29. <h3>[method:Cylindrical clone]()</h3>
  30. <p>
  31. يعيد اسطواني جديد بنفس خصائص [page:.radius radius],
  32. [page:.theta theta] و [page:.y y] كهذا.
  33. </p>
  34. <h3>[method:this copy]( [param:Cylindrical other] )</h3>
  35. <p>
  36. ينسخ قيم خصائص [page:.radius radius],
  37. [page:.theta theta] و [page:.y y] للإسطواني الممرر إلى هذا الإسطواني.
  38. </p>
  39. <h3>
  40. [method:this set]( [param:Float radius], [param:Float theta], [param:Float y] )
  41. </h3>
  42. <p>
  43. يضبط قيم خصائص هذا الإسطواني [page:.radius radius], [page:.theta theta] و [page:.y y].
  44. </p>
  45. <h3>[method:this setFromVector3]( [param:Vector3 vec3] )</h3>
  46. <p>
  47. يضبط قيم خصائص هذا الإسطواني [page:.radius radius], [page:.theta theta]
  48. و [page:.y y] من الـ[page:Vector3 Vector3].
  49. </p>
  50. <h3>
  51. [method:this setFromCartesianCoords]( [param:Float x], [param:Float y], [param:Float z] )
  52. </h3>
  53. <p>
  54. يضبط قيم خصائص هذا الإسطواني [page:.radius radius], [page:.theta theta] و
  55. [page:.y y] من الإحداثيات الديكارتية.
  56. </p>
  57. <h2>المصدر (Source)</h2>
  58. <p>
  59. [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
  60. </p>
  61. </body>
  62. </html>