如何检查 Canvas 小部件中的两个对象是否重叠?
假设我在 Canvas 中有带有标签 'stopped'
和 'flying'
的对象。
如何检查这些对象是否相互重叠?
Say I have objects within the Canvas with a tags 'stopped'
and 'flying'
.
How do I check if any of this objects overlap each other?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用方法
find_overlapping
然后循环遍历结果列表寻找您的标签。
You can use the method
find_overlapping
And then loop through the result list looking for your tag.