1

这是我声明曲线的代码行:

QuadCurve2D.Double curve = new QuadCurve2D.Double(50,100,100,170,150,100);

现在我可以用什么代码来绘制这条曲线?我试过类似的东西:

g.draw(curve);

但显然这不起作用。有什么建议么?

4

2 回答 2

4

我已经对我认为您在此处描述的内容做了一个最低限度的测试用例。该程序有效,但除非我能看到您正在使用的代码,否则我无法真正帮助您。

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

public class CurveDraw extends JFrame {
        public static void main(String[] args) {
                CurveDraw frame = new CurveDraw();
                frame.setVisible(true);
        }
        public CurveDraw() {
                setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                setSize(400,400);
        }
        public void paint(Graphics g) {
                QuadCurve2D.Double curve = new QuadCurve2D.Double(50,100,100,170,150,100);
                ((Graphics2D)g).draw(curve);
        }
}
于 2012-10-29T00:45:18.360 回答
4

对我来说很好...

在此处输入图像描述

public class PaintQuad {

    public static void main(String[] args) {
        new PaintQuad();
    }

    public PaintQuad() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException ex) {
                } catch (InstantiationException ex) {
                } catch (IllegalAccessException ex) {
                } catch (UnsupportedLookAndFeelException ex) {
                }

                JFrame frame = new JFrame();
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setLayout(new BorderLayout());
                frame.add(new PaintMyQuad());
                frame.setSize(200, 200);
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

    public class PaintMyQuad extends JPanel {

        @Override
        protected void paintComponent(Graphics g) {

            super.paintComponent(g);
            Graphics2D g2d = (Graphics2D) g.create();

            QuadCurve2D.Double curve = new QuadCurve2D.Double(50,100,100,170,150,100);

            g2d.setColor(Color.RED);
            g2d.draw(curve);

        }

    }

}

我想到了两件事。

  1. 确保您已设置图形的颜色,默认为窗格的背景颜色
  2. 确保容器的大小足够大(并且布局正确)以显示图形。
于 2012-10-29T00:47:45.987 回答