polar method

void polar(
  1. double rho,
  2. double theta
)

Implementation

void polar( double rho, double theta ){
	theta = _angToRad( theta );
	_re = rho * ClipMath.cos( theta );
	_im = rho * ClipMath.sin( theta );
}