求java小程序图片素材

2024-12-21 21:50:14
推荐回答(2个)
回答1:

这个可以自己画啊……比如坦克
public void drawtank(int x, int y, Graphics g, int direct, int type) {
switch (type) {
case 0:
g.setColor(Color.CYAN);
break;
case 1:
g.setColor(Color.YELLOW);
break;
}
switch (direct) {
// 炮筒向上
case 0:
g.fill3DRect(x, y, 5, 30, false);
g.fill3DRect(x + 16, y, 5, 30, false);
g.fill3DRect(x + 5, y + 5, 11, 20, false);
g.fillOval(x + 5, y + 10, 10, 10);
g.drawLine(x + 10, y, x + 10, y + 10);
break;
// 炮筒向右
case 1:
g.fill3DRect(x, y, 30, 5, false);
g.fill3DRect(x, y + 16, 30, 5, false);
g.fill3DRect(x + 5, y + 5, 20, 11, false);
g.fillOval(x + 10, y + 5, 10, 10);
g.drawLine(x + 30, y + 10, x + 15, y + 10);
break;
// 炮筒向下
case 2:
g.fill3DRect(x, y, 5, 30, false);
g.fill3DRect(x + 16, y, 5, 30, false);
g.fill3DRect(x + 5, y + 5, 11, 20, false);
g.fillOval(x + 5, y + 10, 10, 10);
g.drawLine(x + 10, y + 30, x + 10, y + 10);
break;
// 炮筒向左
case 3:
g.fill3DRect(x, y, 30, 5, false);
g.fill3DRect(x, y + 16, 30, 5, false);
g.fill3DRect(x + 5, y + 5, 20, 11, false);
g.fillOval(x + 10, y + 5, 10, 10);
g.drawLine(x, y + 10, x + 15, y + 10);
break;
}
}

回答2:

已发 , 请查收 。