使用 Swing 绘制图形,无需外部库
如何在 Java Swing 中绘制基于 (x,y) 的图形(通过这些点的线)?
我无法使用任何外部库。
How to draw (x,y) based graph (line through those points) in Java Swing?
I can not use any external library.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 JPanel 视为您的方格纸。现在,使用 java.awt 提供的不同形状,您可以绘制不同的形状,例如直线、椭圆形、矩形等。屏幕上的像素将是方格纸的坐标。它非常简单,所以尝试一下:)
Consider JPanel as your graph paper. Now using different shapes provided by java.awt you can draw different shapes such as Line, Oval, Rectangle etc. The pixels on the screen will be your coordinates of the graph paper. Its very much simple so try it :)
使用 java.awt.Shape
实现 Shape 接口的椭圆形、矩形、多边形、直线等
Use java.awt.Shape
Oval, Rectangle, Polygon, Line etc. implementing the Shape interface