polar method

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

Implementation

void polar( double rho, double theta ){
	_complex().polar( rho, theta );
}