Java中QuadCurve2D生成的曲线方程?

发布于 2024-10-30 08:12:13 字数 167 浏览 0 评论 0原文

我使用java中的QuadCurve2d使用起点、终点和一个控制点绘制了一条二次曲线。有什么办法可以找出这条曲线的方程吗?我需要的原因是在这条曲线的某个点它可能与一个圆相交,我想知道它们的交点。所以基本上我想求解两个方程,但我不知道QuadCurve2D生成的曲线的方程。 任何帮助将不胜感激。

问候 S

I have drawn a quadratic curve using the QuadCurve2d in java using start, end and one control points. Is there a way I can find out the equation of this curve? The reason why I need is that at some point of this curve it might intersect a circle and I want to know their point of intersection. So basically I want to solve two equations, but I dont know the equation of the curve generated by QuadCurve2D.
Any help will be appreicated.

Regards
S

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

揽月 2024-11-06 08:12:13

请参阅 Javadoc 中的 java.awt.geom.PathIterator,特别是 SEG_QUADTO 字段,其中给出了以起点、终点和控制点表示的控制方程。

See the Javadoc for java.awt.geom.PathIterator, specifically the SEG_QUADTO field, in which the control equation in terms of the start, end and control points is given.

笛声青案梦长安 2024-11-06 08:12:13

看一下 Area 类。方法

public void intersect(Area rhs) {
    curves = new AreaOp.IntOp().calculate(this.curves, rhs.curves);
    invalidateBounds();
}

您可以调查来源以了解如何计算交点。

Take a look at Area class. Method

public void intersect(Area rhs) {
    curves = new AreaOp.IntOp().calculate(this.curves, rhs.curves);
    invalidateBounds();
}

You can investigate the sources to understand how intersection point are calculated.

鸠魁 2024-11-06 08:12:13

该函数使用二次贝塞尔曲线:

二次贝塞尔公式

您可以在 维基百科

That function uses a quadratic bezier curve:

quadratic Bezier formula

You can find it on Wikipedia

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