Esempio n. 1
0
 /**
  * Calculates the arc tangent of two variables.
  *
  * @param  float $x
  * @param  float $y
  * @return float
  */
 public function atan2($x, $y)
 {
     return (double) $this->executionEngine->atan2($x, $y);
 }