View and Explore the Mandelbrot Set in a simple GUI.
JavaMandelbrotSetViewer/
├── src/
│ ├── Fractal/
│ │ └── Mandelbrot/
│ │ ├── Image.java
│ │ └── Panel.java
│ │
│ ├── util/
│ │ ├── Complex.java
│ │ ├── Vector2.java
│ │ └── Vector3.java
│ │
│ └── App.java
│
├── screenshots/
│ └── *.png
│
├── README.md
├── LICENSE
└── .gitignore
The following commands should be executed from the Project Root Directory
$ mkdir -p bin
$ cd src
$ javac App.java -d ../bin
$ java -cp './bin' 'App'
$ rm -rf bin/
A Makefile has been provided with the above commands for ease of use.
$ make clean
$ make compile
$ make run
or alternatively,
$ make all