floor method

MathComplex floor()

Implementation

MathComplex floor(){
	return MathComplex(
		ClipMath.floor( _re ),
		ClipMath.floor( _im )
		);
}