根据点画线java

复制代码
 1 package com.yang;
 2 
 3 import java.awt.Color;
 4 import java.awt.Graphics;
 5 import java.util.ArrayList;
 6 import java.util.List;
 7 
 8 import javax.swing.JFrame;
 9 import javax.swing.JPanel;
10 
11 public class drawlineforspline extends JFrame{
12     
13     private static final long serialVersionUID = 1L;
14     static List <mypoint>plist;
15     public static class mypoint{
16         int x;
17         int y;
18         public mypoint(int x,int y){
19             this.x=x;
20             this.y=y;
21         }
22     }
23     public drawlineforspline(){
24         init();
25     }
26     public drawlineforspline(ArrayList plist){
27         init();
28         this.plist=plist;
29          
30     }
31     private void init(){
32      
33         this.setTitle("drawline");
34         this.setBounds(200, 200, 500, 400);
35         this.setBackground(Color.white);
36         this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
37         this.setLocationRelativeTo(null);
38         this.setVisible(true); 
39         
40         plist =new ArrayList();
41         plist.add(new mypoint(50,80));
42         plist.add(new mypoint(50,120));
43         plist.add(new mypoint(80,50));
44         plist.add(new mypoint(150,10));
45         plist.add(new mypoint(180,80));
46         plist.add(new mypoint(230,200));
47         
48     }
49  
50     
51     public class Mypanel extends JPanel{     
52         public void paint(Graphics g){
53             mypoint fromP=new mypoint(50,80);
54             mypoint toP=new mypoint(370,240);
55             for(int i=0;i<plist.size()-1;i++){
56                 g.drawLine(plist.get(i).x, plist.get(i).y, plist.get(i+1).x, plist.get(i+1).y);
57             }
58         }
59     }
60     
61     public static void main(String[] args) {
62         drawlineforspline d=new drawlineforspline();
63         Mypanel myp=d.new Mypanel();
64         d.add(myp);
65     }
66 
67 }
复制代码

 

posted on   rojas  阅读(1611)  评论(0编辑  收藏  举报

编辑推荐:
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
· Linux系统下SQL Server数据库镜像配置全流程详解
· 现代计算机视觉入门之:什么是视频
阅读排行:
· Sdcb Chats 技术博客:数据库 ID 选型的曲折之路 - 从 Guid 到自增 ID,再到
· .NET Core GC压缩(compact_phase)底层原理浅谈
· Winform-耗时操作导致界面渲染滞后
· Phi小模型开发教程:C#使用本地模型Phi视觉模型分析图像,实现图片分类、搜索等功能
· 语音处理 开源项目 EchoSharp
< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

统计

点击右上角即可分享
微信分享提示