| 35 | void polar(const float modulus, const float phase); |
| 36 | float phase() const { return atan2(im, re); }; |
| 37 | float modulus() const { return hypot(re, im); }; |
| 38 | // conjugate is the number mirrored in x-axis |
| 39 | Complex conjugate() const { return Complex(re, -im); }; |
| 40 | Complex reciprocal() const; |