用暴力的方法画出科赫曲线(循环方法),注释代码如下:
import java.awt.Color; import java.awt.Dimension; import java.awt.Graphics2D; import java.awt.Toolkit; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import javax.swing.JFrame; import javax.swing.JPanel; /** * 用暴力方法实现科赫曲线(循环实现) * @author LONG * */ public class Kehe extends JFrame { private Dimension di = null; //创建Dimension类型的变量来保存屏幕尺寸 private Graphics2D gr = null; //创建Graphics类型变量来保存画布对象 private static final long serialVersionUID = 1L; private int[] old_x = new int[2]; //创建初始化x数组用来动态保存原来的坐标 private int[] old_y = new int[2]; //创建初始化y数组用来动态保存原来的坐标 private int[] new_x = new int[2]; //创建数组来保存现在需要画的x坐标 private int[] new_y = new int[2]; //创建数组来保存现在需要画的y坐标 private JPanel jp_draw = null; //声明面板 public static void main(String[] args){ Kehe ke = new Kehe(); ke.showFrame(); } public void showFrame(){ this.setTitle("科赫曲线"); Toolkit tl = Toolkit.getDefaultToolkit(); di = tl.getScreenSize(); //初始化数组 new_x[0] = 0; new_y[0] = di.height*3/4; new_x[1] = di.width; new_y[1] = di.height*3/4; this.setSize(di.width,di.height); this.setDefaultCloseOperation(3); jp_draw = new JPanel(); jp_draw.setPreferredSize(new Dimension(di.width,di.height)); jp_draw.setBackground(Color.WHITE); this.setResizable(false); this.add(jp_draw); this.setVisible(true); gr = (Graphics2D)jp_draw.getGraphics(); jp_draw.addMouseListener(new MouseAdapter(){ public void mousePressed(MouseEvent e){ Start(); } }); } /** * (基于我的暴力画法分析) * 在画之前可以分析一下,科赫曲线,以最简单的思维来看,就是在一条条直线上画正三角形, * 然后再重复前面的过程再画,只是画的时候,直线的位置可能有所不同,因为有水平的直线 * 还有倾斜的直线,但是我们们可以看出,这些直线的有规律可循的,总之就是以PI/6的大小 * 在变化倾斜度,所以只要我们分清楚是哪一种,就可以计算出坐标,存储在数组中,最后把 * 这些点连接起来就可以了。 * * @param x1 * @param y1 * @param x2 * @param y2 */ public void doSomething(int x1,int y1,int x2,int y2){ old_x = new_x; //将旧的数组指向新的数组 old_y = new_y; //将旧的数组指向新的数组 int length = old_x.length; //得到上一个数组的长度,为计算下一次数组的长度做铺垫 new_x = new int[3 * (length - 1) + length]; //扩充新的数组 new_y = new int[3 * (length - 1) + length]; //扩充新的数组 for(int q = 0; q < old_x.length - 1; q++){ //遍历整个旧的数组得到新的坐标 x1 = old_x[q]; y1 = old_y[q]; x2 = old_x[q+1]; y2 = old_y[q+1]; if(Math.sqrt(Math.pow(x2 - x1, 2) + Math.pow(y2 - y1, 2)) > 3){ //使用collection-based for循环遍历旧的数组,将旧的数组的值放到新数组中 int g = 0; for(int n : old_x){ new_x[g] = n; g += 4; } g = 0; for(int n : old_y){ new_y[g] = n; g += 4; } for(int i = 0; i < old_x.length - 1; i++){ //循环的次数是旧的数组中保存的边数,然后计算下一次的新增坐标 if(old_y[i] == old_y[i + 1]){ //判断说明这条线是水平的,水平的时候再判断一下大小 //接着生成这条边上的新的三个点,并且付给新的数组 if(old_x[i] < old_x[i + 1]){ int x11 = old_x[i] + (old_x[i + 1] - old_x[i])/3; int y11 = old_y[i]; int x33 = old_x[i] + 2 * (old_x[i + 1] - old_x[i])/3; int y33 = old_y[i]; int x22 = (x11 + x33)/2; int y22 = y11 - (int)((x33 - x11)*Math.sqrt(3)/2); new_x[4 * i + 1] = x11; new_y[4 * i + 1] = y11; new_x[4 * i + 2] = x22; new_y[4 * i + 2] = y22; new_x[4 * i + 3] = x33; new_y[4 * i + 3] = y33; }else{ int x11 = old_x[i + 1] + 2 * (old_x[i] - old_x[i + 1])/3; int y11 = old_y[i]; int x33 = old_x[i + 1] + (old_x[i] - old_x[i + 1])/3; int y33 = old_y[i]; int x22 = (x11 + x33)/2; int y22 = y11 + (int)((x11 - x33)*Math.sqrt(3)/2); new_x[4 * i + 1] = x11; new_y[4 * i + 1] = y11; new_x[4 * i + 2] = x22; new_y[4 * i + 2] = y22; new_x[4 * i + 3] = x33; new_y[4 * i + 3] = y33; } }else if(old_x[i] < old_x[i + 1] && old_y[i] > old_y[i + 1]){ int x11 = old_x[i] + (old_x[i + 1] - old_x[i])/3; int y11 = old_y[i + 1] + 2 * (old_y[i] - old_y[i + 1])/3; int x33 = old_x[i] + 2 * (old_x[i + 1] - old_x[i])/3; int y33 = old_y[i + 1] +(old_y[i] - old_y[i + 1])/3; int c_x = (x11 + x33)/2; int c_y = (y11 + y33)/2; int h = (int)(Math.sqrt(Math.pow(x33 - x11, 2) + Math.pow(y33 - y11, 2))*Math.sqrt(3)/2); int dx = (int)(Math.cos(Math.PI/6) * h); int dy = (int)(Math.sin(Math.PI/6) * h); int x22 = c_x - dx; int y22 = c_y - dy; new_x[4 * i + 1] = x11; new_y[4 * i + 1] = y11; new_x[4 * i + 2] = x22; new_y[4 * i + 2] = y22; new_x[4 * i + 3] = x33; new_y[4 * i + 3] = y33; }else if(old_x[i] < old_x[i + 1] && old_y[i] < old_y[i + 1]){ int x11 = old_x[i] + (old_x[i + 1] - old_x[i])/3; int y11 = old_y[i] + (old_y[i + 1] - old_y[i])/3; int x33 = old_x[i] + 2 * (old_x[i + 1] - old_x[i])/3; int y33 = old_y[i] + 2 * (old_y[i + 1] - old_y[i])/3; int c_x = (x11 + x33)/2; int c_y = (y11 + y33)/2; int h = (int)(Math.sqrt(Math.pow(x33 - x11, 2) + Math.pow(y33 - y11, 2))*Math.sqrt(3)/2); int dx = (int)(Math.cos(Math.PI/6) * h); int dy = (int)(Math.sin(Math.PI/6) * h); int x22 = c_x + dx; int y22 = c_y - dy; new_x[4 * i + 1] = x11; new_y[4 * i + 1] = y11; new_x[4 * i + 2] = x22; new_y[4 * i + 2] = y22; new_x[4 * i + 3] = x33; new_y[4 * i + 3] = y33; }else if(old_x[i] > old_x[i + 1] && old_y[i] > old_y[i + 1]){ int x11 = old_x[i + 1] + 2 * (old_x[i] - old_x[i + 1])/3; int y11 = old_y[i + 1] + 2 * (old_y[i] - old_y[i + 1])/3; int x33 = old_x[i + 1] + (old_x[i] - old_x[i + 1])/3; int y33 = old_y[i + 1] + (old_y[i] - old_y[i + 1])/3; int c_x = (x11 + x33)/2; int c_y = (y11 + y33)/2; int h = (int)(Math.sqrt(Math.pow(x33 - x11, 2) + Math.pow(y33 - y11, 2))*Math.sqrt(3)/2); int dx = (int)(Math.cos(Math.PI/6) * h); int dy = (int)(Math.sin(Math.PI/6) * h); int x22 = c_x - dx; int y22 = c_y + dy; new_x[4 * i + 1] = x11; new_y[4 * i + 1] = y11; new_x[4 * i + 2] = x22; new_y[4 * i + 2] = y22; new_x[4 * i + 3] = x33; new_y[4 * i + 3] = y33; }else if(old_x[i] > old_x[i + 1] && old_y[i + 1] > old_y[i]){ int x11 = old_x[i + 1] + 2 * (old_x[i] - old_x[i + 1])/3; int y11 = old_y[i] + (old_y[i + 1] - old_y[i])/3; int x33 = old_x[i + 1] + (old_x[i] - old_x[i + 1])/3; int y33 = old_y[i] + 2 * (old_y[i + 1] - old_y[i])/3; int c_x = (x11 + x33)/2; int c_y = (y11 + y33)/2; int h = (int)(Math.sqrt(Math.pow(x33 - x11, 2) + Math.pow(y33 - y11, 2))*Math.sqrt(3)/2); int dx = (int)(Math.cos(Math.PI/6) * h); int dy = (int)(Math.sin(Math.PI/6) * h); int x22 = c_x + dx; int y22 = c_y + dy; new_x[4 * i + 1] = x11; new_y[4 * i + 1] = y11; new_x[4 * i + 2] = x22; new_y[4 * i + 2] = y22; new_x[4 * i + 3] = x33; new_y[4 * i + 3] = y33; } } }else{//选择判断语句结束 break; } } } //} public void Start(){ //用来调用doSomething函数进行求点画图 //动态的调用的doSomething()函数得到足够大的坐标集 for(int i = 0; i < 5; i++){ doSomething(new_x[0], new_y[0], new_x[1], new_y[1]); } for(int j = 0; j < new_x.length - 1; j++){ //将坐标集里面的点连接起来 gr.drawLine(new_x[j], new_y[j], new_x[j + 1], new_y[j + 1]); } } }
相关推荐
科赫曲线的绘制
这是一个用MATLAB语言写的生成科赫曲线的程序,其中科赫曲线是分形理论中的常见图形。
科赫曲线的生成过程是通过不断迭代一个基本的构造单元来实现的。本文将基于提供的MATLAB代码,详细解析科赫曲线的生成算法,并解释代码中的关键步骤。 #### 二、科赫曲线生成原理 科赫曲线的基本构造单元是一个等边...
科赫曲线matlab程序代码,仅供了解原理,了解迭代过程。
2. **循环与迭代**:科赫曲线的生成基于迭代算法,这需要使用MATLAB中的循环结构,如`for`或`while`循环,来反复执行图形变换。 3. **向量与矩阵操作**:在MATLAB中,图形通常通过向量和矩阵表示,科赫曲线的每一次...
在本文中,我们将深入探讨如何使用Java实现科赫曲线的绘制。 首先,理解科赫曲线的构造原理至关重要。基本步骤是将一条直线段分为三等份,然后在中间三分之一处添加一个60度角的小三角形,这样原来的线段就被三条新...
使用python turtle库完成科赫曲线绘制
科赫雪花曲线的MATLAB编程实现是通过使用MATLAB语言来生成科赫雪花曲线的图形。 科赫雪花曲线的MATLAB编程实现可以分为多个步骤: 1. 首先,我们需要定义初始点的坐标,例如x1=[1 2 2.5 3 4],y1=[0 0 0 0 0]。...
科赫曲线.py
如何运用撰写python程序画出科赫雪花曲线,画其他的图案都可以用类似的语句撰写程序。熟悉掌握python画图技巧。
在实现科赫曲线的算法上,MATLAB中会用到向量和矩阵操作。基本步骤可能如下: 1. **初始化**:定义一个起始直线段的向量,例如,一个长度为1的单位向量。 2. **迭代**:在每次迭代中,将当前线段分割为三等份,删除...
科赫曲线绘制.exe
python设计科赫曲线分形树
雪花曲线是科赫曲线的一种变体,它基于科赫曲线的构建原理,但每次迭代时在每个三角形的顶点处添加等边三角形的三分之一边。经过无限迭代,形成的曲线具有无限长度,包围的区域却只有有限的面积,而且其边界具有令人...
Java 递归实现科赫雪花是指使用 Java 语言实现科赫雪花的算法,该算法使用递归函数来绘制科赫雪花图形。科赫雪花是一种 fractal 图形,由瑞典数学家 Niels Fabian Helge von Koch 于 1904 年提出。 在 Java 中实现...
利用python实现科赫雪花的图像制作,小白易懂易上手... 利用python实现科赫雪花的图像制作,小白易懂易上手... 利用python实现科赫雪花的图像制作,小白易懂易上手...
用OPENGL实现koch曲线 通过多次迭代进行曲线的绘画
在这个项目中,我们将深入探讨如何使用VB6来实现科赫格子的绘制。 首先,我们需要理解科赫格子的基本概念。科赫格子起源于科赫曲线,是由瑞典数学家Helge von Koch于1904年提出的。科赫曲线的生成过程是将一条直线...