@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | * Roll, rotation about the X-axis. |
31 | 31 | * |
32 | 32 | * @param &array $dom_attributes |
33 | - * @param float|int $roll |
|
33 | + * @param double $roll |
|
34 | 34 | * @return void |
35 | 35 | */ |
36 | 36 | public function updateX(array &$dom_attributes, float $roll) |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | * Pitch, rotation about the Y-axis. |
43 | 43 | * |
44 | 44 | * @param &array $dom_attributes |
45 | - * @param float|int $pitch |
|
45 | + * @param double $pitch |
|
46 | 46 | * @return void |
47 | 47 | */ |
48 | 48 | public function updateY(array &$dom_attributes, float $pitch) |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | * Yaw, rotation about the Z-axis. |
55 | 55 | * |
56 | 56 | * @param &array $dom_attributes |
57 | - * @param float|int $yaw |
|
57 | + * @param double $yaw |
|
58 | 58 | * @return void |
59 | 59 | */ |
60 | 60 | public function updateZ(array &$dom_attributes, float $yaw) |
@@ -37,6 +37,7 @@ |
||
37 | 37 | * @param integer|double $x |
38 | 38 | * @param integer|double $y |
39 | 39 | * @param integer|double $z |
40 | + * @return void |
|
40 | 41 | */ |
41 | 42 | public function update(float $x = 0, float $y = 0, float $z = 0); |
42 | 43 | } |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | * Roll, rotation about the X-axis. |
31 | 31 | * |
32 | 32 | * @param &array $dom_attributes |
33 | - * @param float|int $roll |
|
33 | + * @param double $roll |
|
34 | 34 | * @return void |
35 | 35 | */ |
36 | 36 | public function updateX(array &$dom_attributes, float $roll) |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | * Pitch, rotation about the Y-axis. |
43 | 43 | * |
44 | 44 | * @param &array $dom_attributes |
45 | - * @param float|int $pitch |
|
45 | + * @param double $pitch |
|
46 | 46 | * @return void |
47 | 47 | */ |
48 | 48 | public function updateY(array &$dom_attributes, float $pitch) |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | * Yaw, rotation about the Z-axis. |
55 | 55 | * |
56 | 56 | * @param &array $dom_attributes |
57 | - * @param float|int $yaw |
|
57 | + * @param double $yaw |
|
58 | 58 | * @return void |
59 | 59 | */ |
60 | 60 | public function updateZ(array &$dom_attributes, float $yaw) |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | * Radius of the inner hole of the ring. |
51 | 51 | * |
52 | 52 | * @param array $dom_attributes |
53 | - * @param float|int $radiusInner |
|
53 | + * @param double $radiusInner |
|
54 | 54 | * @return void |
55 | 55 | */ |
56 | 56 | public function radiusInner(array &$dom_attributes, float $radiusInner) |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | * Radius of the outer edge of the ring. |
63 | 63 | * |
64 | 64 | * @param array $dom_attributes |
65 | - * @param float|int $radiusOuter |
|
65 | + * @param double $radiusOuter |
|
66 | 66 | * @return void |
67 | 67 | */ |
68 | 68 | public function radiusOuter(array &$dom_attributes, float $radiusOuter) |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | * Central angle in degrees. |
75 | 75 | * |
76 | 76 | * @param array $dom_attributes |
77 | - * @param float|int $thetaLength |
|
77 | + * @param double $thetaLength |
|
78 | 78 | * @return void |
79 | 79 | */ |
80 | 80 | public function thetaLength(array &$dom_attributes, float $thetaLength) |
@@ -85,8 +85,8 @@ discard block |
||
85 | 85 | /** |
86 | 86 | * Starting angle in degrees. |
87 | 87 | * |
88 | - * @param array $dom_attributess |
|
89 | - * @param float|int $thetaStart |
|
88 | + * @param array $dom_attributes |
|
89 | + * @param double $thetaStart |
|
90 | 90 | * @return void |
91 | 91 | */ |
92 | 92 | public function thetaStart(array &$dom_attributes, float $thetaStart) |