Skip to content

Instantly share code, notes, and snippets.

View thisisjeffsnow's full-sized avatar

Jeff Snow thisisjeffsnow

View GitHub Profile
// by Erik Wrenholt
import java.util.*;
class Mandelbrot
{
static int BAILOUT = 16;
static int MAX_ITERATIONS = 1000;
private static int iterate(float x, float y)
{