Merge SCI-MR-149: Fix theta

This commit is contained in:
Alexander Nozik 2022-02-02 07:00:26 +00:00 committed by Space
commit 53ab8334dd

View File

@ -41,7 +41,7 @@ public val Complex.r: Double
* An angle between vector represented by complex number and X axis.
*/
public val Complex.theta: Double
get() = atan(im / re)
get() = atan2(im, re)
private val PI_DIV_2 = Complex(PI / 2, 0)