phpOMS/Math/Number/Complex.php
2015-11-29 22:03:06 +01:00

14 lines
246 B
PHP

class Complex implements Number {
private $real = 0;
private $imaginary = 0;
public function __construct() {}
public function setReal($real) {
$this->real = $real;
}
public function setImaginary($imaginary) {
$this->imaginary = $imaginary;
}
}