Alters this complex number as if an addition of another complex number was performed. @param r the real part of the other number @param i the imaginary part of the other number
(double r, double i)
| 76 | * @param i the imaginary part of the other number |
| 77 | */ |
| 78 | public void mutableAdd(double r, double i) |
| 79 | { |
| 80 | this.real += r; |
| 81 | this.imag += i; |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * Alters this complex number to contain the result of the addition of another |
no outgoing calls
no test coverage detected