From c07379fdf965dab5e6a8c63b66afefe34c68331c Mon Sep 17 00:00:00 2001 From: indigo Date: Wed, 25 Dec 2024 17:04:31 -0600 Subject: [PATCH] Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b9d29f2..72cf1c4 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,9 @@ 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. +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. +**Please note that I was not formerly taught threading at this point, thus, threading may be overcomplicated. This was one of my first projects using OOP.** # 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). +For the writeup portion of this project I did last year, please visit [here](https://git.bpcspace.com/indigo/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.