使用 Swing 绘制图形,无需外部库

发布于 2024-12-13 06:20:03 字数 67 浏览 2 评论 0原文

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

若能看破又如何 2024-12-20 06:20:03

将 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 :)

自控 2024-12-20 06:20:03

使用 java.awt.Shape
实现 Shape 接口的椭圆形、矩形、多边形、直线等

Use java.awt.Shape
Oval, Rectangle, Polygon, Line etc. implementing the Shape interface

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文