()
| 1880 | return new BigNumber(this.t.atan2(this.b, this.a)) |
| 1881 | } |
| 1882 | clone() { |
| 1883 | return Object.assign( Object.create( Object.getPrototypeOf(this)), this) |
| 1884 | } |
| 1885 | conjugate() { |
| 1886 | this.b = this.b.negated() |
| 1887 | return this |
no outgoing calls
no test coverage detected