import java.awt.*;
import javax.swing.*;
public class Gr3d4a extends Gr3d1m {
/**
*br方法说明:主方法
*br输入参数:
*br返回类型:
*/
public static void main(String[] args){
Gr3d4a G3 = new Gr3d4a();
}
/**
*br方法说明:构造器
*br输入参数:
*br返回类型:
*/
public Gr3d4a() {
setTitle("3D cube box");
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
addMouseListener(this);
addMouseMotionListener(this);
setBackground(new Color(128,128,255));
setSize(350,35...[ 查看全文 ]