@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | * Radius of the outer edge of the torus. |
| 47 | 47 | * |
| 48 | 48 | * @param &array $dom_attributes |
| 49 | - * @param float|int $radius |
|
| 49 | + * @param double $radius |
|
| 50 | 50 | * @return void |
| 51 | 51 | */ |
| 52 | 52 | public function radius(array &$dom_attributes, float $radius) |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | * Radius of the tube. |
| 59 | 59 | * |
| 60 | 60 | * @param &array $dom_attributes |
| 61 | - * @param float|int $radiusTubular |
|
| 61 | + * @param double $radiusTubular |
|
| 62 | 62 | * @return void |
| 63 | 63 | */ |
| 64 | 64 | public function radiusTubular(array &$dom_attributes, float $radiusTubular) |
@@ -96,7 +96,6 @@ discard block |
||
| 96 | 96 | * Central angle. |
| 97 | 97 | * |
| 98 | 98 | * @param &array $dom_attributes |
| 99 | - * @param float|int $radiusTubular |
|
| 100 | 99 | * @return void |
| 101 | 100 | */ |
| 102 | 101 | public function arc(array &$dom_attributes, float $arc) |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | * Positive X Axis extends right. |
| 32 | 32 | * |
| 33 | 33 | * @param &array $dom_attributes |
| 34 | - * @param float|int $x_axis |
|
| 34 | + * @param double $x_axis |
|
| 35 | 35 | * @return void |
| 36 | 36 | */ |
| 37 | 37 | public function updateX(array &$dom_attributes, float $x_axis) |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | * Positive Y Axis extends down. |
| 45 | 45 | * |
| 46 | 46 | * @param &array $dom_attributes |
| 47 | - * @param float|int $y_axis |
|
| 47 | + * @param double $y_axis |
|
| 48 | 48 | * @return void |
| 49 | 49 | */ |
| 50 | 50 | public function updateY(array &$dom_attributes, float $y_axis) |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | * Positive Z Axis extends out. |
| 58 | 58 | * |
| 59 | 59 | * @param &array $dom_attributes |
| 60 | - * @param float|int $z_axis |
|
| 60 | + * @param double $z_axis |
|
| 61 | 61 | * @return void |
| 62 | 62 | */ |
| 63 | 63 | public function updateZ(array &$dom_attributes, float $z_axis) |
@@ -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) |