Skip to content

Instantly share code, notes, and snippets.

View keiosweb's full-sized avatar

Keios Solutions keiosweb

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)
{