Я хочу создать PNG-фотографию набора Мандельброта с использованием Java, результат должен быть легко найден в поиске картинок Google.
Набор определен в следующей последовательности:
z_n+1 = z_n^2 + c
, где c
и z
- комплексные числа, а z
всегда имеет модуль меньше 2.
Я начал с определения класса для комплексных чисел, который также содержит основные сложные операции.Необходимый.
public class ComplexNumber {
private double real;
private double imaginary;
public ComplexNumber(double real, double imaginary) {
this.real = real;
this.imaginary = imaginary;
}
public ComplexNumber add(ComplexNumber z1, ComplexNumber z2) {
ComplexNumber sum = new ComplexNumber(0, 0);
sum.real = z1.real + z2.real;
sum.imaginary = z1.imaginary + z2.imaginary;
return sum;
}
public ComplexNumber square(ComplexNumber z) {
ComplexNumber squared = new ComplexNumber(0, 0);
squared.real = Math.pow(z.real, 2) - Math.pow(z.imaginary, 2);
squared.imaginary = 2 * z.real * z.imaginary;
return squared;
}
public double abs() {
double absolute = Math.sqrt(Math.pow(this.real, 2) + Math.pow(this.imaginary, 2));
return absolute;
}
}
Затем я определил класс Мандельброта, который получает число комплексных чисел c (на основе пикселей), проверяет, находятся ли эти числа в наборе Мандельброта, с помощью метода mandelbrot, и переносит выходные данные.этого метода в цвет для отображения.
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
public class Mandelbrot {
public static int mandelbrot(ComplexNumber c, ComplexNumber z, int i, int n) {
if (i < n) {
if (c.abs() > 2.0) {
return i;
} else
return 0;
}
return mandelbrot(c, z.square(z).add(z, c), i, n);
}
// Create the Mandelbrot image, fill it and save it as PNG file.
public static void createMandelbrotImage(int tileSize, int maxRecurse) throws IOException {
int height = 2 * tileSize;
int width = 3 * tileSize;
BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
ComplexNumber z0 = new ComplexNumber(0, 0);
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
// Construct a complex number from the pixel coordinates
float xPos = (x + 0.5f - 2 * tileSize) / tileSize;
float yPos = (y + 0.5f - tileSize) / tileSize;
ComplexNumber c = new ComplexNumber(xPos, yPos);
// Check the Mandelbrot condition for this complex number
int mb = mandelbrot(c, z0, 0, maxRecurse);
// Translate the result to number in a reasonable range and use it as color.
double mbl = mb > 0 ? Math.log(mb) / Math.log(maxRecurse) : 0;
image.setRGB(x, y, (int) (mbl * 255));
}
}
// Save the image as PNG
String OS = System.getProperty("os.name").toLowerCase(); // different for win and unix
String filePath = System.getProperty("user.dir") + (OS.indexOf("win") >= 0 ? "\\" : "/") + "mandelbrot.png";
System.out.println("Writing mandelbrot image to: " + filePath);
ImageIO.write(image, "png", new File(filePath));
}
public static void main(String[] args) throws IOException {
createMandelbrotImage(500, 2 ^ 24);
}
}
Проблема заключается в том, что этот код всегда выводит черное пустое изображение, и я не вижу ошибки.