setComplex method

EasyClip setComplex(
  1. String chr,
  2. double real,
  3. double imag
)

Implementation

EasyClip setComplex( String chr, double real, double imag ){
	_setEnv();
	int index = ClipMath.char( chr );
	_param.setReal( index, real, false );
	_param.setImag( index, imag, false );
	return this;
}