矩形越来越大而不是改变位置

时间:2015-03-25 14:14:40

标签: java cube

在另一个程序上我遇到了同样的问题,所以我给了你一个较小的类我正在尝试做的事情,这样你就可以更容易地阅读代码了。 基本上,我正试图改变X的位置,但似乎只是变大了。

import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Rectangle;
import java.awt.RenderingHints;

import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.RepaintManager;


public class test extends JPanel{

    public int x = 200;
    public int y = 620;

    Rectangle cube = new Rectangle(x, y, 80, 80);

    int cubex = cube.x;


    public void paint(Graphics g){

        Graphics2D g2d = (Graphics2D) g;
        g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                RenderingHints.VALUE_ANTIALIAS_ON);

        g2d.fill(cube);

    }

    public void moveCube(){
        cube.setLocation(cubex -= 1, y);
        cube.setSize(80, 80);
        repaint();
    }

    public static void main(String[] args) throws InterruptedException {

        test t = new test();

        JFrame frame = new JFrame();

        frame.add(t);

        frame.setSize(700, 1000);
        frame.setVisible(true);
        frame.setTitle("The Cube");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setResizable(true);
        frame.setLocationRelativeTo(null);

        frame.setBackground(new Color(240, 84, 84));

        while(true){

            t.moveCube();
            Thread.sleep(10);
        }
    }

}

非常感谢你的帮助:))

1 个答案:

答案 0 :(得分:1)

我试过你的程序。您正在正确移动对象,但您没有清除以前绘制的矩形;因此它似乎正在扩大。