+ added comment

This commit is contained in:
Rob Tillaart 2013-09-29 21:55:40 +02:00
parent f94989f97f
commit 0e54058f98

View File

@ -44,6 +44,7 @@ double Complex::imag()
return im;
}
// polar2cartesian
void Complex::polar(double modulus, double phase)
{
re = modulus * cos(phase);