如何使用java awt libaray绘制心脏?我正在使用Java AWT Libaray,我需要为我的游戏画上一颗心。我怎么能用AWT做到这一点?
这就是我的想法:可能会使用g.fillArc()
?但是如果我在顶部制作两条曲线而不是如何在按钮上制作三角形呢?那会是g.fillPolygon()
吗?
g.fillArc(x, y, 20,20, 60, 60); //so this will be left curve
g.fillArc(x+20, y, 20,20, 60, 60); //so right curve?
//button triangle?
我想知道是否有任何人在awt中的经历并且可以告诉我如何做到这一点?
答案 0 :(得分:1)
不得不为我正在做的事情编写这段代码并且它运行良好。使用图形g在x和y处绘制具有指定宽度和高度的三角形。
// Draw a heart.
public void drawHeart(Graphics g, int x, int y, int width, int height) {
int[] triangleX = {
x - 2*width/18,
x + width + 2*width/18,
(x - 2*width/18 + x + width + 2*width/18)/2};
int[] triangleY = {
y + height - 2*height/3,
y + height - 2*height/3,
y + height };
g.fillOval(
x - width/12,
y,
width/2 + width/6,
height/2);
g.fillOval(
x + width/2 - width/12,
y,
width/2 + width/6,
height/2);
g.fillPolygon(triangleX, triangleY, triangleX.length);
}
答案 1 :(得分:0)
//你真的不需要在Heart绘图中使用AWT://
public static void main(String[] args) {
int H=7,W=7;
for(int i=2;i<=(H+1)/2;i++){
for(int j=0;j<W/2-i;j++){
System.out.print(" ");
}
for(int k=1;k<(i+1)*2+1;k++){
System.out.print("*");
}
if(i==2){
System.out.print(" ");
}
for(int j=0;j<W/2-i+1;j++){
System.out.print(" ");
}
for(int k=1;k<(i+1)*2+1;k++){
if(i==(H+1)/2&&k>i+3)
System.out.print("");
else
System.out.print("*");
}
System.out.println();
}
int HH=17,WW=17;
for(int i=1;i<=HH/2;i++){
for(int j=1;j<=i;j++){
System.out.print(" ");
}
int z=WW-2*i;
for(int k=1;k<=z;k++){
System.out.print("*");
}
System.out.println();
}
}
}