summaryrefslogtreecommitdiff
path: root/README.md
blob: b9d29f26aa0a4f04004dbe30bbc4dc4f0bfd7f99 (plain)
1
2
3
4
5
6
7
8
9
# Building
For Linux, just run make. Depends on libpng.

# Info
This project was my final for CS200 at JCCC. It uses multiple threads to draw the mandelbrot. When one thread is finished, it will communicate with other threads to split the load; work delegation is the main showcase of this project. Additionally, The class used to render is polymorphic, as new rendering methods can be implimented without reimplimenting code such as work delegation and synchronization.

# Writeup
For the writeup portion of this project I did last year, please visit [here](https://git.bpcspace.com/brett/Mandelbrot-CS200/src/branch/master/docs/p4.pdf). 
Here you will be able to see demos, as well as flowcharts and pseudo code for some of the functionallity.