椭圆与椭圆如何相交?

发布于 2024-11-18 03:56:09 字数 194 浏览 4 评论 0原文

我用的是JAVA。

Ellipse2D s1=new Ellipse2D.Float(0,0,100,100);
System.out.println(s1.intersects(99, 30, 100, 100));

应该返回 false 但它返回 true。如何求两个椭圆的交点?

谢谢

I'm using JAVA.

Ellipse2D s1=new Ellipse2D.Float(0,0,100,100);
System.out.println(s1.intersects(99, 30, 100, 100));

Should return false but it return true. How to find intersection between 2 ellipse?

Thx

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

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

发布评论

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

评论(1

心的位置 2024-11-25 03:56:09

CADEMIA 有一个有用的 api,可以从 此处。类 cib.util.geo.Geo2D 有一个方法Geo2D#intersection 计算两个椭圆之间的交点。

希望这会对您有所帮助。谢谢。

CADEMIA has an useful api which can be downloaded from here. The class cib.util.geo.Geo2D has a method Geo2D#intersection which calculates the intersection points between two ellipses.

Hope this will help you. Thanks.

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