椭圆与椭圆如何相交?
我用的是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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.