diff options
| author | nic-gaffney <gaffney_nic@protonmail.com> | 2023-07-27 23:10:18 -0500 |
|---|---|---|
| committer | nic-gaffney <gaffney_nic@protonmail.com> | 2023-07-27 23:10:18 -0500 |
| commit | 1744d9dff4f372ed15dada6766a17b05c26e5f33 (patch) | |
| tree | 53725c63230aa294a5a580981e529d06e84b3ea3 /mandelbrot.java | |
| parent | ad85abc2db9ed35a2e3cf6ab18573de135ee9a5c (diff) | |
| download | sloth-1744d9dff4f372ed15dada6766a17b05c26e5f33.tar.gz | |
formatting
Diffstat (limited to 'mandelbrot.java')
| -rw-r--r-- | mandelbrot.java | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/mandelbrot.java b/mandelbrot.java deleted file mode 100644 index 1409ce6..0000000 --- a/mandelbrot.java +++ /dev/null @@ -1,40 +0,0 @@ -public class mandelbrot { - public static void main(String[] args) { - // char escCode = 0x1B; - // System.out.printf("%c[%d;%dH", escCode, 20, 10); - // System.out.print("█"); - // System.out.printf("%c[%d;%dH", escCode, 20, 20); - // System.out.print("█"); - // System.out.printf("%c[%d;%dH", escCode, 30, 10); - // System.out.print("█"); - - double size = 800; - double maxVal = 4; - double maxIter = 50; - double plane = 4; - int x = 0; - while (x < size) { - int y = 0; - while (y < size) { - double cReal = (x * plane / size) - 2.0; - double cImg = (y * plane / size) - 2.0; - double zReal = 0.0; - double zImg = 0.0; - double count = 0.0; - while ((zReal * zReal + zImg * zImg) <= maxVal && count < maxIter) { - var temp = (zReal * zReal) - (zImg * zImg) + cReal; - zImg = 2.0 * zReal * zImg + cImg; - zReal = temp; - count = count + 1.0; - if (count == maxIter) { - char escCode = 0x1B; - System.out.printf("%c[%d;%dH", escCode, x, y); - System.out.print("█"); - } - } - y = y + 1; - } - x = x + 1; - } - } -} |
