sub method

MathComplex sub(
  1. dynamic r
)

Implementation

MathComplex sub( dynamic r ){
	if( r is MathComplex ){
		return MathComplex( _re - r._re, _im - r._im );
	}
	return MathComplex( _re - ClipMath.toDouble(r), _im );
}