• 大小: 62KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-02
  • 语言: Java
  • 标签: java  

资源简介

用java编写的多边形扫描填充算法,有文档和在jbuilder下打包的exe文件

资源截图

代码片段和文件信息

package hanyulin;

import javax.swing.UIManager;
import java.awt.*;

/**
 * 

title: 


 * 

Description: 


 * 

Copyright: Copyright (c) 2003


 * 

Company: 


 * @author not attributable
 * @version 1.0
 */

public class Application1 {
  boolean packframe = false;

  //Construct the application
  public Application1() {
    frame1 frame = new frame1();
    //Validate frames that have preset sizes
    //Pack frames that have useful preferred size info e.g. from their layout
    if (packframe) {
      frame.pack();
    }
    else {
      frame.validate();
    }
    //Center the window
    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    Dimension frameSize = frame.getSize();
    if (frameSize.height > screenSize.height) {
      frameSize.height = screenSize.height;
    }
    if (frameSize.width > screenSize.width) {
      frameSize.width = screenSize.width;
    }
    frame.setLocation((screenSize.width - frameSize.width) / 2 (screenSize.height - frameSize.height) / 2);
    frame.setVisible(true);
  }
  //Main method
  public static void main(String[] args) {
    try {
      UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    }
    catch(Exception e) {
      e.printStackTrace();
    }
    new Application1();
  }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1292  2003-10-06 15:09  Application1.java

     文件        651  2003-10-12 11:05  Bc.java

     文件        388  2003-10-12 15:45  Edge.java

     文件      19977  2006-07-15 07:06  frame1.java

     文件     111878  2003-10-15 12:22  scanfill.exe

     文件      31744  2006-07-15 07:12  扫描线填充算法试验报告.doc

     文件        280  2003-10-10 19:20  POINT.java

----------- ---------  ---------- -----  ----

               166428                    8


评论

共有 条评论