()
| 1877 | return new BigNumber(this.a).times(this.a).plus(this.b.times(this.b)).sqrt() // sqrt(a^2 + b^2) |
| 1878 | } |
| 1879 | arg() { |
| 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 | } |