A few years ago my brother and I wrote a Java code for the Mandelbrot Set. Yesterday I wanted to find some cool zooms with it but as I did more intense zooms I started to notice an issue (at a zoom value of around 1E14). It appears that pixels are being grouped together and sometimes create a weird strippy effect.
Above is a picture of the issue (this is supposed to be in 4k).
Here are some links of other, less deep zooms (they have to be google links because they are too big): https://photos.app.goo.gl/c2hUHM7sSmvKxYbQ6 https://photos.app.goo.gl/nG2cgjJ7vn7XYf8KA https://photos.app.goo.gl/TtpF1Q6hjojHSn747
The issue is amplified as you zoom further and further in until only one color appears. The Mandelbrot set works
When we made the program, we tried to use the shading shown in the images on the Wikipedia article about the Mandelbrot set. The only info we could find out about it was that it was a cubic interpolated coloring scheme which gave it a smooth transition look. We spent a long time trying to figure it out but eventually, we did. The thing that made it hard was the fact that the curve could not exceed the RGB limits of 255, so the curves also had to be monotonic and also the only thing we could really find to help were two Wikipedia articles about this type of interpolation. We created the code from scratch and once we figured out how to cade the cubic interpolation, I worked on getting the perfect colors to use with it. Attached is the .jar and our code (it's very messy, sorry were amateurs):
code: https://drive.google.com/file/d/186o_lkvUQ7wux5y-9qu8I4VSC3nV25xw/view?usp=sharing
executable file (if you want): https://drive.google.com/file/d/1Z12XI-wJCJmI9x0_dXfA3pcj5CNay3K-/view?usp=sharing (you must hit enter after you enter each value)
I am hoping someone can help me troubleshoot the issue. Or let me know if they have experienced this issue as well.