CS1021
Class Visualization
Person |
-isPolar: boolean = false -real: double {readOnly} -imag: double {readOnly} |
+Complex() +Complex(real: double, imag: double) +Complex(num: String) +toString(): String +plus(addend: double): Complex +plus(addend: Complex): Complex +minus(subtrahend: Complex): Complex +equals(that: Complex): boolean +getMagnitude(): double +getAngle(): double -setPolar(): void -setCartesian(): void +times(multiplicand: Complex): Complex +divdedBy(divisor: Complex): Complex |