Computer Science Canada Mandelbrot Series Zoom |
Author: | TDapplejuice [ Fri Nov 04, 2011 8:00 pm ] | ||
Post subject: | Mandelbrot Series Zoom | ||
What is it you are trying to achieve? Be able to zoom more then once in Mandelbrot set also anything that would make the Mandelbrot set more efficient What is the problem you are having? First zoom works great but then the second i just get the entire screen colored one color Describe what you have tried to solve this problem everything i can think of...nothing fixes just yields same result. Post any relevant code (You may choose to attach the file instead of posting the code if it is too long)
Please specify what version of Turing you are using Using verion 4.1 of Turing |
Author: | Raknarg [ Sun Nov 06, 2011 4:15 pm ] |
Post subject: | RE:Mandelbrot Series Zoom |
I cannot fix this, but I feel like I should tell you, I just had an epiphany looking at this program. Because its awesome, I mean. |
Author: | TDapplejuice [ Sun Nov 06, 2011 4:33 pm ] |
Post subject: | Re: Mandelbrot Series Zoom |
Raknarg wrote: I cannot fix this, but I feel like I should tell you, I just had an epiphany looking at this program. Because its awesome, I mean. haha thanks man...really annoying how i can only do one zoom. I think its just my logic is wrong really because if the mandelbrot has infinite depth then the values of c should not be getting closer and closer each time because wouldn't they meet at some point? |
Author: | Raknarg [ Sun Nov 06, 2011 6:07 pm ] |
Post subject: | RE:Mandelbrot Series Zoom |
You're writing a program that will draw a shape of infinite depth. Therefore, you must have a stating and ending point, otherwise it would never be drawn. |
Author: | Raknarg [ Sun Nov 06, 2011 6:07 pm ] |
Post subject: | RE:Mandelbrot Series Zoom |
Could you not change the value of c at some point or something? |
Author: | Beastinonyou [ Sun Nov 06, 2011 6:18 pm ] |
Post subject: | Re: Mandelbrot Series Zoom |
I know not of how to help you with your dilemma. But serious *fistbump* Props for the most insane thing I've seen in a long while. Especially something this awesome in Turing. I Google'd this, and there's so many cool things about it. Don't know how it works. Sure is awesome though. =P |
Author: | trishume [ Sun Nov 06, 2011 10:45 pm ] |
Post subject: | RE:Mandelbrot Series Zoom |
I don't have time to debug your code right now but I did notice 2 things. You forgot to use your iterations constant and just put 255 once. Also, use the RGB module and HSL conversion (wiki it) to get better looking colours. Using turing colour numbers will give weird cyclings. I suggest printing your variables each time you do a zoom to see if they change. |