3

我开发了一个小 Swing 应用程序,在其中我JFrame使用单独的类添加了一个 Square component。现在我想在它的中心旋转这个正方形,但我只看到一个根本不旋转的静态正方形。

这是我的代码...

public class Rotation extends JFrame {

    Rotation() {
        super("Animation of rotation about center");
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setSize(400,400);

        add(new component());

        setVisible(true);
    }

    public static void main(String args[]){
        SwingUtilities.invokeLater(new Runnable(){public void run(){new Rotation();}});
    }
}

class component extends JPanel implements ActionListener {
    Timer timer;
    Rectangle.Double r=new Rectangle.Double(100,100,50,50);
    int theta=0;

    component() {
        timer=new Timer(10,this);
        timer.start();
    }

    public void actionPerformed(ActionEvent e) {
        if (theta==360){
            theta=0;
            theta++;
        }
        repaint();
    }

    public void paint(Graphics g){
        Graphics2D g2=(Graphics2D)g;
        g2.setColor(Color.GRAY);
        g2.rotate(theta);
        g2.fill(r);
    }
}

有人可以帮我识别并解决问题。

4

4 回答 4

5

您的代码中有很多错误:

  1. theta应该是双倍的,并且应该以弧度表示,而不是度数。所以让它加倍:

    private double theta = 0;
    
  2. 您不会更改theta计时器操作中的值 - 在以下位置执行此操作actionPerformed

    public void actionPerformed ( ActionEvent e )
    {
        theta += Math.PI / 18;
        if ( theta >= Math.PI * 2 )
        {
            theta = 0;
        }
        repaint ();
    }
    
  3. 您不指定应围绕其旋转图形上下文的点。这样做(否则你的正方形将围绕坐标(0;0)的开始旋转):

    public void paintComponent ( Graphics g )
    {
        super.paintComponent ( g );
    
        Graphics2D g2 = ( Graphics2D ) g;
        g2.setRenderingHint ( RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON );
        g2.rotate ( theta, 125, 125 );
        g2.setColor ( Color.GRAY );
        g2.fill ( r );
    }
    
  4. 您覆盖组件的paint方法而不是paintComponent. 总是使用paintComponent它,因为它针对重绘和其他我不想在这里谈论的 Swing 内容进行了优化,因为它是一个很大的离题。

  5. 您使用 JPanel 作为基础组件来绘制简单的形状 - 请改用 JComponent,因为您实际上并不需要任何 JPanel 的功能(实际上也没有)。

请参阅最终的工作示例:

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

/**
 * @see http://stackoverflow.com/a/13051142/909085
 */

public class RotationTest extends JFrame
{
    public RotationTest ()
    {
        super ( "Animation of rotation about center" );
        setDefaultCloseOperation ( JFrame.EXIT_ON_CLOSE );
        setSize ( 400, 400 );

        add ( new MyComponent () );

        setVisible ( true );
    }

    public static void main ( String args[] )
    {
        SwingUtilities.invokeLater ( new Runnable ()
        {
            public void run ()
            {
                new RotationTest ();
            }
        } );
    }

    private class MyComponent extends JComponent implements ActionListener
    {
        private Timer timer;
        private Rectangle.Double r = new Rectangle.Double ( 100, 100, 50, 50 );
        private double theta = 0;

        public MyComponent ()
        {
            super ();
            timer = new Timer ( 1000 / 24, this );
            timer.start ();
        }

        public void actionPerformed ( ActionEvent e )
        {
            theta += Math.PI / 18;
            if ( theta >= Math.PI * 2 )
            {
                theta = 0;
            }
            repaint ();
        }

        public void paintComponent ( Graphics g )
        {
            super.paintComponent ( g );

            Graphics2D g2 = ( Graphics2D ) g;
            g2.setRenderingHint ( RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON );
            g2.rotate ( theta, 125, 125 );
            g2.setColor ( Color.GRAY );
            g2.fill ( r );
        }
    }
}

正如您所看到的,我还在paint 方法中添加了一个渲染提示,以使方形移动平滑并重构您的一些代码。

于 2012-10-24T14:18:15.480 回答
3

theta变量在哪里改变?

于 2012-10-24T14:06:34.493 回答
1
public void actionPerformed(ActionEvent e) {
    theta+= 10; // <------------I think prooblem was here..
    if (theta==360){
        theta=0;
    }
    repaint();
}
于 2012-10-24T14:10:55.023 回答
-2

问题是我需要进行 2 处更改:

// 1.
g2.rotate(theta,125,125);

// 2.
super.paint(g);
于 2012-10-24T14:31:03.740 回答