Home Manual Reference Source Test Repository

src/cartesian/kernel/core/arg.js


/**
 * Computes the argument of the complex number a + bi.
 */

export default atan2 => ( a , b )  => atan2( b , a ) ;