Skip to content

Instantly share code, notes, and snippets.

View ErnestoRdS's full-sized avatar

Ernesto Ramírez ErnestoRdS

  • UpVent Technologies
View GitHub Profile
int mandelbrotSet(double fnZ, float cnum, int nn) {
fnZ += (pow(fnZ, 2) + cnum);
if(fnZ > 2)
return 0;
else if(nn == 0)
return 1;
else
return mandelbrotSet(fnZ, cnum, nn-1);