如何用java编写爱心,用java 2DAPI绘制心形图形

1,用java 2DAPI绘制心形图形估计就我一个人回答了..你为啥要心形..java作图的话不确定的不规则的图形很难画的..除非..你给提供图形算法..要不......... 找个心形的图片做背景啊..还用自己用代码画啊..找个办法折中一下... 这个没有可能做成...这个代码量太大,只能给你点提示了:1.用JWindow作为主窗体(这样就没有标题栏和边框了)2.得写段程序做个能使这个JWindow的背景变成透明的组件,这种程序网上很多,搜一下Swing hacks这本书吧(关键步骤:截图,绘制,刷新)3.找个心型的图片(不要想用代码实现 , 很麻烦的,这是数学问题了),用java的imageio读进内存,然后绘制在一个刚才的那个透明组件上 , 基本就能达到你的要求了 。。。同时你还得做很多其他的工作,比如Jwindow没有标题栏,你就得自己做个关闭按钮,还有得添加鼠标事件的监听器,实现让用户能拖动窗口的功能等等 。。。rectangle 是一个类看 , 在声明arraylist的时候加上<>代表泛型 。意思就是说你声明的集合s中只能存储rectangle类型的元素 。
2,怎么用代码编程出心型#includevoid main() { printf("......******.......******......\n....**********...**********....\n..*************.*************..\n.*****************************.\n.*****************************.\n.*****************************.\n..***************************..\n....***********************....\n......*******************......\n........***************........\n..........***********..........\n............*******............\n..............***..............\n...............*..............."); return 0; } ~任务占坑
3,如何用java画出心形最简单的system.out.print();自己多打印几次试试就好了public class teststatic float count(float x, float y)return (float) (math.pow((x * x + y * y - 1), 3) - x * x * y * y * y); } public static void printempty()int height = 50, width = 100;int heart[][] = new int[height][width];float hx = 0.0f, hy = 0.0f;for (int y = height / 2; y > -height / 2; y--)for (int x = -width / 2; x < width / 2; x++)hx = (float) x / (float) (width / 2.8f);hy = (float) (y) / (float) (height / 2.8f);if (count(hx, hy) <= 0.0f)heart[height / 2 - y][x + width / 2] = 1;}}}for (int y = 1; y < height - 1; y++)for (int x = 1; x < width - 1; x++)if (heart[y][x] == 1&& !(heart[y][x - 2] == 1 && heart[y][x + 2] == 1&& heart[y - 1][x] == 1 && heart[y + 1][x] == 1))system.out.print("*");} elsesystem.out.print(" ");}}system.out.println();}system.out.println(); } public static void main(string[] args)printempty(); }}【如何用java编写爱心,用java 2DAPI绘制心形图形】

    推荐阅读