@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | * Depth (in meters) of the sides on the Z axis. |
43 | 43 | * |
44 | 44 | * @param &array $dom_attributes |
45 | - * @param float|int $depth |
|
45 | + * @param double $depth |
|
46 | 46 | * @return void |
47 | 47 | */ |
48 | 48 | public function depth(array &$dom_attributes, float $depth) |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | * Height (in meters) of the sides on the Y axis. |
55 | 55 | * |
56 | 56 | * @param &array $dom_attributes |
57 | - * @param float|int $height |
|
57 | + * @param double $height |
|
58 | 58 | * @return void |
59 | 59 | */ |
60 | 60 | public function height(array &$dom_attributes, float $height) |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | * Width (in meters) of the sides on the X axis. |
67 | 67 | * |
68 | 68 | * @param &array $dom_attributes |
69 | - * @param float|int $width |
|
69 | + * @param double $width |
|
70 | 70 | * @return void |
71 | 71 | */ |
72 | 72 | public function width(array &$dom_attributes, float $width) |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | * Radius (in meters) of the circle. |
46 | 46 | * |
47 | 47 | * @param &array $dom_attributes |
48 | - * @param float|int $radius |
|
48 | + * @param double $radius |
|
49 | 49 | * @return void |
50 | 50 | */ |
51 | 51 | public function radius(array &$dom_attributes, float $radius) |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | * Can be used to define a partial circle. |
74 | 74 | * |
75 | 75 | * @param &array $dom_attributes |
76 | - * @param float|int $thetaStart |
|
76 | + * @param double $thetaStart |
|
77 | 77 | * @return void |
78 | 78 | */ |
79 | 79 | public function thetaStart(array &$dom_attributes, float $thetaStart) |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | * Defaults to 360, which makes for a complete circle. |
86 | 86 | * |
87 | 87 | * @param &array $dom_attributes |
88 | - * @param float|int $thetaLength |
|
88 | + * @param double $thetaLength |
|
89 | 89 | * @return void |
90 | 90 | */ |
91 | 91 | public function thetaLength(array &$dom_attributes, float $thetaLength) |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | * Height of the cylinder. |
59 | 59 | * |
60 | 60 | * @param &array $dom_attributes |
61 | - * @param float|int $height |
|
61 | + * @param double $height |
|
62 | 62 | * @return void |
63 | 63 | */ |
64 | 64 | public function height(array &$dom_attributes, float $height) |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | * Radius of the cylinder. |
84 | 84 | * |
85 | 85 | * @param &array $dom_attributes |
86 | - * @param float|int $radius |
|
86 | + * @param double $radius |
|
87 | 87 | * @return void |
88 | 88 | */ |
89 | 89 | public function radius(array &$dom_attributes, float $radius) |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | * Central angle in degrees. |
108 | 108 | * |
109 | 109 | * @param &array $dom_attributes |
110 | - * @param float|int $thetaLength |
|
110 | + * @param double $thetaLength |
|
111 | 111 | * @return void |
112 | 112 | */ |
113 | 113 | public function thetaLength(array &$dom_attributes, float $thetaLength) |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | * Starting angle in degrees. |
120 | 120 | * |
121 | 121 | * @param &array $dom_attributes |
122 | - * @param float|int $thetaStart |
|
122 | + * @param double $thetaStart |
|
123 | 123 | * @return void |
124 | 124 | */ |
125 | 125 | public function thetaStart(array &$dom_attributes, float $thetaStart) |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | * Height along the Y axis. |
43 | 43 | * |
44 | 44 | * @param &array $dom_attributes |
45 | - * @param float|int $height |
|
45 | + * @param double $height |
|
46 | 46 | * @return void |
47 | 47 | */ |
48 | 48 | public function height(array &$dom_attributes, float $height) |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | * Width along the X axis. |
55 | 55 | * |
56 | 56 | * @param &array $dom_attributes |
57 | - * @param float|int $width |
|
57 | + * @param double $width |
|
58 | 58 | * @return void |
59 | 59 | */ |
60 | 60 | public function width(array &$dom_attributes, float $width) |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | * Radius of the sphere. |
56 | 56 | * |
57 | 57 | * @param &array $dom_attributes |
58 | - * @param float|int $radius |
|
58 | + * @param double $radius |
|
59 | 59 | * @return void |
60 | 60 | */ |
61 | 61 | public function radius(array &$dom_attributes, float $radius) |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | * Horizontal starting angle. |
92 | 92 | * |
93 | 93 | * @param &array $dom_attributes |
94 | - * @param float|int $phiStart |
|
94 | + * @param double $phiStart |
|
95 | 95 | * @return void |
96 | 96 | */ |
97 | 97 | public function phiStart(array &$dom_attributes, float $phiStart) |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | * Horizontal sweep angle size. |
104 | 104 | * |
105 | 105 | * @param &array $dom_attributes |
106 | - * @param float|int $phiLength |
|
106 | + * @param double $phiLength |
|
107 | 107 | * @return void |
108 | 108 | */ |
109 | 109 | public function phiLength(array &$dom_attributes, float $phiLength = null) |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | * Vertical starting angle. |
116 | 116 | * |
117 | 117 | * @param &array $dom_attributes |
118 | - * @param float|int $thetaStart |
|
118 | + * @param double $thetaStart |
|
119 | 119 | * @return void |
120 | 120 | */ |
121 | 121 | public function thetaStart(array &$dom_attributes, float $thetaStart) |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | * Vertical sweep angle size. |
128 | 128 | * |
129 | 129 | * @param &array $dom_attributes |
130 | - * @param float|int $thetaLength |
|
130 | + * @param double $thetaLength |
|
131 | 131 | * @return void |
132 | 132 | */ |
133 | 133 | public function thetaLength(array &$dom_attributes, float $thetaLength) |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | * Radius that contains the torus knot. |
51 | 51 | * |
52 | 52 | * @param &array $dom_attributes |
53 | - * @param float|int $radius |
|
53 | + * @param double $radius |
|
54 | 54 | * @return void |
55 | 55 | */ |
56 | 56 | public function radius(array &$dom_attributes, float $radius) |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | * Radius of the tubes of the torus knot. |
63 | 63 | * |
64 | 64 | * @param &array $dom_attributes |
65 | - * @param float|int $radiusTubular |
|
65 | + * @param double $radiusTubular |
|
66 | 66 | * @return void |
67 | 67 | */ |
68 | 68 | public function radiusTubular(array &$dom_attributes, float $radiusTubular) |
@@ -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) |
@@ -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) |