BenoĆ®t Mandelbrot’s Mandelbrot set fractal.
[Source]
# File lib/fractals.rb, line 83 def initialize(c=Complex(-0.65, 0.0)) super(c, {:z => 0, :p => 2}) do |args| args[:z] = args[:z]**args[:p] + args[:c] end end
[Validate]