cslarsen / mandelbrot-js

Fast rendering of the Mandelbrot set in HTML5 canvas using JavaScript

Home Page:https://csl.name/mandelbrot/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Falsely commented

tyalie opened this issue · comments

* Z_{n+1} = Z_{n} + C

Sorry. But the formula in this line is wrong. It should be z_{n+1} = z_{n}^2 + c

Thanks, you are right!

Fixed on master

You're welcome