Skip to content

Instantly share code, notes, and snippets.

@koozdra
Created March 10, 2016 03:37
Show Gist options
  • Select an option

  • Save koozdra/26b50ddd68ddd42926b6 to your computer and use it in GitHub Desktop.

Select an option

Save koozdra/26b50ddd68ddd42926b6 to your computer and use it in GitHub Desktop.
function mandelbrotRank (timeout, x, y) {
var i = 0,
zx = x,
zy = y;
while (zx*zx + zy*zy < 4 && i < timeout){
var tx = zx*zx - zy*zy + x,
ty = 2*zx*zy + y;
zx = tx;
zy = ty;
i += 1;
}
return i;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment