java:Graphics2D版本的折线?
好的,现在有一个 Line2D
和一个 Rectangle2D
可供 Graphics2D.draw()
而不是Graphics.drawLine()
和 Graphics.drawRectangle()
。
Graphics.drawPolyLine() 是否有类似的“升级”?
OK, so there's a Line2D
and a Rectangle2D
that can be used by Graphics2D.draw()
instead of Graphics.drawLine()
and Graphics.drawRectangle()
.
Is there a similar "upgrade" for Graphics.drawPolyLine()
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下
Path2D
。它是一个Shape
,因此应该能够通过Graphics2D.draw()
进行绘制。用法示例:
Have a look at
Path2D
. It is aShape
and should thus be able to be drawn throughGraphics2D.draw()
.Example usage: