Skip to content

Instantly share code, notes, and snippets.

@rogerkenny
Created October 19, 2015 02:32
Show Gist options
  • Save rogerkenny/c6d57cae9d9bf0b23abf to your computer and use it in GitHub Desktop.
Save rogerkenny/c6d57cae9d9bf0b23abf to your computer and use it in GitHub Desktop.
First step toward a tweetable Mandelbrot.
var m=100,d=document,i=function(x,y,g,h,j){return(x*x+y*y<4&&j<m)?i(x*x-y*y+g,2*x*y+h,g,h,++j):(j<m)?'#fff':'#000';},k,l=-1,s=0.02;do{l=l+s;k=-2;do{k=k+s/2;d.write('<b style="color:'+i(0,0,k,l,1)+';">#</b>');}while(k<=0.8);d.write('<br>')}while(l<=1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment