How to draw the radius of a circle without it being shorter or larger than the circumference(如何在不小于或大于周长的情况下绘制圆的半径)
问题描述
我正在开发一个程序,我想在其中画一条从圆心到其参数点的线.但它在圆周外和内圆周上画线.我想根据 X
和 Y
角度在圆周上精确地画线.
圆中心点:
x = 200y = 100半径= 100
public SecondActivity(String azim,String ele) {初始化();设置标题(我的窗口");`angle_x = Integer.parseInt(azim);angle_y = Integer.parseInt(ele);x = 200+r*Math.cos(angle_x);y = 100+r*Math.sin(angle_y);}公共无效油漆(图形g){super.paint(g);drawCircle(g,200,100,r);画线(g);}公共无效drawCircle(图形g,int x,int y,int r){g.setColor(Color.BLACK);g.drawOval(x, y, r*2,r*2);}公共无效drawLine(图形g){Graphics2D g2d = (Graphics2D) g;g2d.setColor(Color.BLUE);g2d.draw(new Line2D.Double(300.0d,200.0d,x,y));}
您的代码(和逻辑)中有几个错误:
您使用 2 个角度来计算
X
和Y
坐标,因此会得到奇怪的结果.根据这个您使用的角度是度数,但
Math.cos(angle)
和Math.sin(angle)
要求angle
以弧度表示,因此,您必须将角度转换为弧度,如Math.roRadians(angle)
,如以下问题所示:I am working on a program in which I want to draw a line from circle's center to its parametric point. But it draws line out of circumference and inside circumference. I want to draw line exactly on circumference according to
X
andY
angles.Circle center points:
x = 200 y = 100 radius= 100
public SecondActivity(String azim,String ele) { initialize(); setTitle("My WIndow");` angle_x = Integer.parseInt(azim); angle_y = Integer.parseInt(ele); x = 200+r*Math.cos(angle_x); y = 100+r*Math.sin(angle_y); } public void paint(Graphics g) { super.paint(g); drawCircle(g,200,100,r); drawLine(g); } public void drawCircle(Graphics g,int x,int y,int r) { g.setColor(Color.BLACK); g.drawOval(x, y, r*2,r*2); } public void drawLine(Graphics g) { Graphics2D g2d = (Graphics2D) g; g2d.setColor(Color.BLUE); g2d.draw(new Line2D.Double(300.0d,200.0d,x,y)); }
解决方案You have a couple of errors in your code (and logic):
You're using 2 angles to calculate the
X
andY
coords, thus, giving you weird results. As per this Wikipedia image the angle theta is the same for bot coords.You're using the angle in degrees, but
Math.cos(angle)
andMath.sin(angle)
require that theangle
is given in radians, so, you must convert the angles to radians as likeMath.roRadians(angle)
, as shown in this question: How to use Math.cos() & Math.sin()?Not really an error but a suggestion from @MadProgrammer in this other answer of mine to use the Shape API instead of pure
.drawOval
as you did while drawing the line, changedrawOval
todraw(new Ellipse2D.Double(...))
.You're overriding
paint(Graphics g)
method instead ofpaintComponent(Graphics g)
this could cause some issues while painting. UseJPanels
and override theirpaintComponent
method and add thoseJPanel
s to yourJFrame
.
Having said all of the above, I came to a good example that follows the above advises as well as solving the issue:
import java.awt.Color; import java.awt.Dimension; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.geom.Ellipse2D; import java.awt.geom.Line2D; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.SwingUtilities; public class RadiusDrawer { private JFrame frame; private int centerX = 50; private int centerY = 50; private int x = 0; private int y = 0; private int r = 100; public static void main(String[] args) { SwingUtilities.invokeLater(new RadiusDrawer()::createAndShowGui); } private void createAndShowGui() { frame = new JFrame(getClass().getSimpleName()); frame.add(new MyCircle()); frame.pack(); frame.setVisible(true); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); } @SuppressWarnings("serial") class MyCircle extends JPanel { int cx = 0; int cy = 0; public MyCircle() { int angle = 0; x = (int) (r * Math.cos(Math.toRadians(angle))); y = (int) (r * Math.sin(Math.toRadians(angle))); y *= -1; //We must inverse the Y axis since in Math Y axis starts in the bottom while in Swing it starts at the top, in order to have or angles correctly displayed, we must inverse the axis calculateCenter(); } private void calculateCenter() { cx = centerX + r; cy = centerY + r; } @Override protected void paintComponent(Graphics g) { super.paintComponent(g); Graphics2D g2d = (Graphics2D) g; drawCircle(g2d, centerX, centerY, r); drawRadius(g2d); } private void drawCircle(Graphics2D g2d, int x, int y, int r) { g2d.setColor(Color.BLACK); g2d.draw(new Ellipse2D.Double(x, y, r * 2, r * 2)); } private void drawRadius(Graphics2D g2d) { g2d.setColor(Color.BLUE); g2d.draw(new Line2D.Double(cx, cy, cx + x, cy + y)); } @Override public Dimension getPreferredSize() { return new Dimension(300, 300); } } }
Here are some screenshots of the output at 0, 60 and 90 degrees.
这篇关于如何在不小于或大于周长的情况下绘制圆的半径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在不小于或大于周长的情况下绘制圆的半径


- Jersey REST 客户端:发布多部分数据 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01