setComplex static method

MathComplex setComplex(
  1. MathComplex c,
  2. double re,
  3. double im
)

Implementation

static MathComplex setComplex( MathComplex c, double re, double im ){
	c._re = re;
	c._im = im;
	return c;
}