二维线段与矩形的交集
我使用 C# 和 XNA。我需要任何语言的算法来获取矩形与二维线段的边界交点。
我已经为我的问题寻找答案三个多小时了,但找不到有效的解决方案。
有人可以帮我吗?
多谢。
I using C# and XNA. I need an algorithm in any language to obtain the border intersection point(s) of a rectangle with a 2d segment.
I've been looking for an answer for my question for over 3 hours already and couldn't find a solution that works.
Can anyone help me please?
Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在此处找到线段与 aabb 框相交的示例。
或者与您的问题相同的问题 此处
You can find an example for a line segment intersection with an aabb box here.
Or the same question as your question here