Java-2D:如何绘制圆弧?
我正在使用 java 图形 2d 库绘制一些图形,在绘制圆弧时卡住了。我的目标是绘制以下两条弧线: ) ( 我正在使用以下代码:
g2.draw(new Arc2D.Double(x, y,
rectwidth,
rectheight,
90, 135,
Arc2D.OPEN));
但是此代码绘制了一些奇怪类型的弧,我确信 x、y、宽度和高度参数。但我对接下来的两个参数表示怀疑,我确信我做错了一些事情,但我不知道那是什么:(
I am drawing some figures with the java graphics 2d library, i stuck while drawing an arc. My objective is to draw the following two arcs:
)
(
I am using the following code:
g2.draw(new Arc2D.Double(x, y,
rectwidth,
rectheight,
90, 135,
Arc2D.OPEN));
but this code draws some strange type of arc, i am sure with the x,y,width and height params. But i am doubtful about the next two params i am sure that i am doing some thing wrong but i dont know whats that :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论