- mag() - Method in class eecs2030.lab3.Complex
-
Compute the magnitude of this complex number.
- main(String[]) - Static method in class eecs2030.lab3.DrawMandelbrot
-
- main(String[]) - Static method in class princeton.introcs.Picture
-
Tests this Picture data type.
- makeColorMap() - Static method in class eecs2030.lab3.DrawMandelbrot
-
Returns a colormap of 256 colors for assigning colors to points that
are outside of the Mandelbrot set.
- mandelbrotIterations(Complex, int) - Static method in class eecs2030.lab3.MandelbrotUtil
-
Return the number of iterations needed to determine if z(n + 1) = z(n) * z(n) + c
remains bounded where z(0) = 0 + 0i.
- MandelbrotUtil - Class in eecs2030.lab3
-
- multiply(Complex) - Method in class eecs2030.lab3.Complex
-
Multiply this complex number with another complex number to obtain a new
complex number.