嘿伙计我刚刚来到这里,因此我提前为我模糊的问题道歉。 我有一个学校项目完成,目标是创建一个完全工作的Paint Programm。 我们获得了3个课程。椭圆形,线条和多边形。这些类的作用大致相同,主要区别在于它们绘制的形式。其中一个类看起来像这样:
public class Oval extends Drawable{
private int x1,y1,x2,y2;
private Color c;
private JFrame f;
/**
* Constructor of the Oval Class
* Initialises the attributes of this Class
*
* @return void
*/
public Oval(int X, int Y, int width, int height, Color c){
this.x1 = x1;
this.y1= y1;
this.x2 = x2;
this.y2 = y2;
this.c = c;
}
/**
* Draws an Oval based on the Values x1,y1,x2,y2
*
* @return void
*/
@Override
public void draw(Graphics g) {
g.setColor(c);
g.drawOval(x1, y1, x2, y2);
}
}
现在我的问题是我不知道如何从我的Panel调用这个类。当我尝试在PaintComponent方法中从我的JPanel调用 draw(...)时,它什么也没做。 这是我的Jarame添加到我的JFrame fyi的JPanel类。
public class PaintPanel extends JPanel {
private PaintFrame f;
public PaintPanel(PaintFrame f){
this.f = f;
}
@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
Oval o = new Oval(100, 100, 50, 50, new Color(127, 184, 255), f);
o.draw(g);
}
}
不要介意参数中的Frame,这是针对椭圆,线和多边形类中的克隆方法,以避免OutOfBounce绘图。
现在我的框架:
public class PaintFrame extends JFrame{
private PaintPanel pp;
public PaintFrame(){
pp = new PaintPanel(this);
this.setSize(500, 500);
this.setTitle("Paint");
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setContentPane(pp);
this.setVisible(true);
}
}
所以这就是我猜的。我想做这个工作,因为这几乎是整个项目的基本部分。在此先感谢您的任何帮助,如果您有任何提示,让我的下一个问题更好,更准确随意批评:)
答案 0 :(得分:0)
您Oval
构建函数中未正确设置Oval
的坐标。您需要做的是使用初始x和y位置以及宽度和高度值计算它们,如下所示:
this.x1 = X;
this.y1= Y;
this.x2 = x+width;
this.y2 = y+height;