All Questions
6 questions
1
vote
1
answer
516
views
C# PRNG class based on xoshiro256**
Background
I'm creating a (probably bad) map-generation utility in C# to generate fractal terrain and similar. Nothing I do probably needs special treatment, but I thought it best to start with a good ...
2
votes
0
answers
297
views
Fractal renderer in WPF
This was made mostly for fun, but also to practice.
I'm generally looking for feedback on how to make the code run faster, any obvious mistakes I'm making in regards to using WPF, which I'm not at ...
3
votes
1
answer
404
views
Mandelbrot image generator with parallel iteration
I'm currently trying to optimize this class I have for fractal generation. The equation is meant to be pluggable; I have used z => z*z + c so that it's not using ...
5
votes
1
answer
345
views
Multithreaded Mandelbrot Generator Ver 3
I thought Ver 2 was fairly solid but ending up modifying all but one method for Ver 3. Performance for Generate is the same, but I was able to simplify the method ...
11
votes
3
answers
684
views
Multithreaded Mandelbrot Generator Ver 2
Update: Version 3 is here.
My first version was an answer I provided to EBrown for his original post titled "Multithreaded Mandelbrot Generator". My answer had many good things in it, but I felt ...
17
votes
4
answers
2k
views
Multithreaded Mandelbrot Generator
I built one of these long ago, and it got lost when I reformatted my SSD (sad day) so here is the new version.
It is very multithreaded, spawning numCores - 1 ...