1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <!DOCTYPE html>
- <html lang="ar">
- <head>
- <meta charset="utf-8" />
- <base href="../../../" />
- <script src="page.js"></script>
- <link type="text/css" rel="stylesheet" href="page.css" />
- </head>
- <body class="rtl">
- <h1>[name]</h1>
- <p class="desc">
- نقطة
- [link:https://en.wikipedia.org/wiki/Cylindrical_coordinate_system الإحداثيات الاسطوانية].
- </p>
-
- <h2>المنشئ (Constructor)</h2>
-
- <h3>
- [name]( [param:Float radius], [param:Float theta], [param:Float y] )
- </h3>
- <p>
- [page:Float radius] - المسافة من المبدأ إلى نقطة في المستوى x-z. الافتراضي هو `1.0`.<br />
- [page:Float theta] - الزاوية عكس عقارب الساعة في المستوى x-z مقاسة بالراديان من المحور z الموجب. الافتراضي هو `0`.<br />
- [page:Float y] - الارتفاع فوق المستوى x-z. الافتراضي هو `0`.
- </p>
-
- <h2>الخصائص (Properties)</h2>
-
- <h3>[property:Float radius]</h3>
-
- <h3>[property:Float theta]</h3>
-
- <h3>[property:Float y]</h3>
-
- <h2>الطرق (Methods)</h2>
-
- <h3>[method:Cylindrical clone]()</h3>
- <p>
- يعيد اسطواني جديد بنفس خصائص [page:.radius radius],
- [page:.theta theta] و [page:.y y] كهذا.
- </p>
-
- <h3>[method:this copy]( [param:Cylindrical other] )</h3>
- <p>
- ينسخ قيم خصائص [page:.radius radius],
- [page:.theta theta] و [page:.y y] للإسطواني الممرر إلى هذا الإسطواني.
- </p>
-
- <h3>
- [method:this set]( [param:Float radius], [param:Float theta], [param:Float y] )
- </h3>
- <p>
- يضبط قيم خصائص هذا الإسطواني [page:.radius radius], [page:.theta theta] و [page:.y y].
- </p>
-
- <h3>[method:this setFromVector3]( [param:Vector3 vec3] )</h3>
- <p>
- يضبط قيم خصائص هذا الإسطواني [page:.radius radius], [page:.theta theta]
- و [page:.y y] من الـ[page:Vector3 Vector3].
- </p>
-
- <h3>
- [method:this setFromCartesianCoords]( [param:Float x], [param:Float y], [param:Float z] )
- </h3>
- <p>
- يضبط قيم خصائص هذا الإسطواني [page:.radius radius], [page:.theta theta] و
- [page:.y y] من الإحداثيات الديكارتية.
- </p>
-
- <h2>المصدر (Source)</h2>
- <p>
- [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
- </p>
- </body>
- </html>
|