Function __global->atan2
Definitions
sources_custom/phpstub.php
- Arc tangent of two variables.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: float
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $x | float | No | No | required parameter | N/A | N/A | First |
| $y | float | No | No | required parameter | N/A | N/A | Second |
Returns
- Result
- Type: float
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Arc tangent of two variables.
*
* @param float $x First
* @param float $y Second
* @return float Result
*/
function atan2(float $x, float $y) : float
* Arc tangent of two variables.
*
* @param float $x First
* @param float $y Second
* @return float Result
*/
function atan2(float $x, float $y) : float

