计算同心矩形差异的数学
我有 2 个矩形,其中一个基本上是另一个按比例放大的,就像这样
我想看看一组 xy 坐标是否在 XOR 差异范围内,即
执行此操作的最佳数学方法是什么?
两个矩形之间的差异(XOR),作为矩形?我想要什么,但不完全是,而且看起来有点……不优雅。
或者,如果 x/y 坐标在外部矩形边缘的 10% 范围内,我可以使用返回“true”的内容
I have 2 rectangles, one which is basically the other scaled up, like so
I'd like to see if a set of xy coords falls within the XOR difference, ie
What's the best math to do this?
Difference (XOR) between two rectangles, as rectangles? does kind of what I want, but not exactly, and it seems somewhat... inelegant.
Alternately, I could work with something that returns "true" if x/y coords are within 10% of the edge of the outer rectangle
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设 rect1 是外部矩形。
where I'm assuming
rect1
is the outer rectangle.这是一个 javascript 示例,用于查找点是否在矩形中。 矩形内点测试
那么只需要测试它是否在 Rectangle1 中,如果是,是否不在 Rectangle2 中。
Heres an example in javascript for finding if a point is in a rectangle. Point-in-rectangle testing
Then its just a matter if testing if its in Rectangle1 and if so, if its not in Rectangle2.