1 | <?php |
||
29 | final class Cone extends Entity implements EntityInterface |
||
30 | { |
||
31 | |||
32 | /** |
||
33 | * <a-cone> |
||
34 | * |
||
35 | * The cone primitive creates a cone shape. It is an entity that prescribes the geometry with its geometric |
||
36 | * primitive set to cone. |
||
37 | * |
||
38 | * @return void |
||
39 | */ |
||
40 | 3 | public function reset() |
|
45 | |||
46 | /** |
||
47 | * geometry.height |
||
48 | * |
||
49 | * @param int $height |
||
50 | * @return \AframeVR\Extras\Primitives\Cone |
||
51 | */ |
||
52 | 2 | public function height(int $height) |
|
57 | |||
58 | /** |
||
59 | * geometry.openEnded |
||
60 | * |
||
61 | * @param bool $open_ended |
||
62 | * @return \AframeVR\Extras\Primitives\Cone |
||
63 | */ |
||
64 | 2 | public function openEnded(bool $open_ended) |
|
69 | |||
70 | /** |
||
71 | * geometry.radiusBottom |
||
72 | * |
||
73 | * @param float $radius |
||
74 | * @return \AframeVR\Extras\Primitives\Cone |
||
75 | */ |
||
76 | 2 | public function radiusBottom(float $radius) |
|
81 | |||
82 | /** |
||
83 | * geometry.radiusTop |
||
84 | * |
||
85 | * @param float $radius |
||
86 | * @return \AframeVR\Extras\Primitives\Cone |
||
87 | */ |
||
88 | 2 | public function radiusTop(float $radius) |
|
93 | |||
94 | /** |
||
95 | * geometry.segmentsHeight |
||
96 | * |
||
97 | * @param int $s_height |
||
98 | * @return \AframeVR\Extras\Primitives\Cone |
||
99 | */ |
||
100 | 2 | public function segmentsHeight(int $s_height) |
|
105 | |||
106 | /** |
||
107 | * geometry.segmentsRadial |
||
108 | * |
||
109 | * @param in $s_radial |
||
110 | * @return \AframeVR\Extras\Primitives\Cone |
||
111 | */ |
||
112 | 2 | public function segmentsRadial(int $s_radial) |
|
117 | |||
118 | /** |
||
119 | * geometry.thetaLength |
||
120 | * |
||
121 | * @param float $t_lenght |
||
122 | * @return \AframeVR\Extras\Primitives\Cone |
||
123 | */ |
||
124 | 2 | public function thetaLength(float $t_lenght) |
|
129 | |||
130 | /** |
||
131 | * geometry.thetaStart |
||
132 | * |
||
133 | * @param float $t_start |
||
134 | * @return \AframeVR\Extras\Primitives\Cone |
||
135 | */ |
||
136 | 2 | public function thetaStart(float $t_start) |
|
141 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.