ass method

MathComplex ass(
  1. dynamic r
)

Implementation

MathComplex ass( dynamic r ){
	if( r is MathComplex ){
		_re = r._re;
		_im = r._im;
	} else {
		_re = ClipMath.toDouble(r);
		_im = 0.0;
	}
	return this;
}