Home Manual Reference Source Test Repository

src/cartesian/object/core/Complex.js


export default function Complex ( a , b ) {

	this.real = a ;
	this.img  = b ;

}