求如何在java applet中画随机三角形?
我的project中已经有了其他的图形,只有三角形不会。下面是我的矩形的class,请帮我做一个三角形的classclassRectangularShapeextends...
我的project中已经有了其他的图形,只有三角形不会。
下面是我的矩形的class, 请帮我做一个三角形的class
class RectangularShape extends Shape {
int height, width;
RectangularShape() {
this(0,0,10,20);
}
RectangularShape(int x, int y, int height, int width) {
this.x = x;
this.y = y;
this.height = height;
this.width = width;
}
void randomSize() {
height = randomNumber(5,35);
width = randomNumber(5,35);
}
public void drawShape(Graphics g) {
g.fillRect(x, y, width, height);
}
} 展开
下面是我的矩形的class, 请帮我做一个三角形的class
class RectangularShape extends Shape {
int height, width;
RectangularShape() {
this(0,0,10,20);
}
RectangularShape(int x, int y, int height, int width) {
this.x = x;
this.y = y;
this.height = height;
this.width = width;
}
void randomSize() {
height = randomNumber(5,35);
width = randomNumber(5,35);
}
public void drawShape(Graphics g) {
g.fillRect(x, y, width, height);
}
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询