doublex=0, y = 0; doublea= -1.7, b = -2, c = -2, d = -2; for (inti=0; i < 100000; i++) { x = d * Math.sin(a * x) - Math.sin(b * y); y = c * Math.cos(a * x) + Math.cos(b * y); intm= (int) ((d * Math.sin(a * x) - Math.sin(b * y)) * 100 + 400); intn= (int) ((c * Math.cos(a * x) + Math.cos(b * y)) * 100 + 400); gr.drawLine(m, n, m, n); gr.setColor(newColor(250, i % 255, i % 155)); }
代码中的 a、b、c、d 为我们拟定的参数,它们决定了整个分形图形的形状。我们将参数代入公式,用 for循环 来实现100000次的递归,每递归一次画一个点。 要注意的是,画在JFrame上的点应为整数,所以我们在画之前须将坐标 m、n 强制转型为整型。 如果我们将参数稍加修改(double a = -2, b =-30, c = -1.9, d = 1.9;)则有:
类似地,还有:
1 2 3 4 5 6 7 8 9 10 11 12
doublex=0f; doubley=0f; doublea= -1.7, b = 1.8, c = -1.9, d = 0.4; for (inti=0; i < 255000; i++) { doubletemx= Math.sin(a * y) + c * Math.cos(a * x); doubletemy= Math.sin(b * x) + d * Math.cos(b * y); intx1= (int) (temx * 130 + 400); inty1= (int) (temy * 130 + 400); gr.setColor(newColor(100, i % 255, i % 155)); gr.drawLine(x1, y1, x1, y1); x = temx; y = temy; }