Skip to content

Instantly share code, notes, and snippets.

@koozdra
Last active October 18, 2015 08:41
Show Gist options
  • Save koozdra/054aeae1ecfbe87e2995 to your computer and use it in GitHub Desktop.
Save koozdra/054aeae1ecfbe87e2995 to your computer and use it in GitHub Desktop.
Mandelbrot Rank
function mandelbrotRank (x, y, timeout) {
var i = 0,
zx = x,
zy = y;
while (zx*zx + zy*zy < 4 && i < timeout){
zx = zx*zx - zy*zy + x + offx;
zy = 2*zx*zy + y + offy;
i += 1;
}
return i;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment