= private = protected
polar(r, theta)
Creates a Complex number in terms of r (radius) and theta (angle).
# File lib/complex.rb, line 113 def Complex.polar(r, theta) Complex(r*Math.cos(theta), r*Math.sin(theta)) end