src/cartesian/kernel/core/arg.js
/**
* Computes the argument of the complex number a + bi.
*/
export default atan2 => ( a , b ) => atan2( b , a ) ;
/**
* Computes the argument of the complex number a + bi.
*/
export default atan2 => ( a , b ) => atan2( b , a ) ;