矩形和圆形碰撞检测

Rectangle and Circle collision detection(矩形和圆形碰撞检测)
本文介绍了矩形和圆形碰撞检测的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在矩形和圆形之间进行碰撞检测.我想出了这个方法:

I am trying to do collision detection between a rectangle and a circle. I came up with this method:

-(BOOL) isCollidingRect:(CCSprite *) spriteOne WithSphere:(CCSprite *) spriteTwo {
    float diff = ccpDistance(spriteOne.position, spriteTwo.position);
    float obj1Radii = [spriteOne boundingBox].size.width/2;
    float obj2Radii = [spriteTwo boundingBox].size.width/2;
    if (diff < obj1Radii + obj2Radii) {
        return YES;
    } else {
        return NO;
    }
}

这就是我检查它的方式:

and this is how I check it:

if ([self isCollidingRect:player WithSphere:blocker] == true) {
   [self playerdeathstart];
}

这似乎在矩形的一侧正常工作,但它不在它的上方或下方.在顶部和底部,碰撞发生得太早了.

This seems to work properly on the side of the rectangle but it doesn't above or below it. On the top and bottom, the collision occurs too early.

有没有办法可以正确检测到这种碰撞?感谢您的帮助.

Is there a way I can get this collision to detected properly? Thank you for your help.

推荐答案

你可以使用CGRectIntersectsRect 来实现这个.

You can use CGRectIntersectsRect to achieve this.

-(BOOL) isCollidingRect:(CCSprite *) spriteOne WithSphere:(CCSprite *) spriteTwo {
    return CGRectIntersectsRect([spriteOne boundingBox],[spriteTwo boundingBox]);
}

它不是像素完美的,但据我所知,在这种情况下没有必要.

It is not pixel perfect but as i understand that is not necessary in this case.

这篇关于矩形和圆形碰撞检测的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Why local notification is not firing for UNCalendarNotificationTrigger(为什么没有为UNCalendarNotificationTrigger触发本地通知)
iOS VoiceOver functionality changes with Bundle Identifier(IOS画外音功能随捆绑包标识符而变化)
tabbar middle tab out of tabbar corner(选项卡栏中间的选项卡角外)
Pushing UIViewController above UITabBar(将UIView控制器推送到UITabBar上方)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Get an event when UIBarButtonItem menu is displayed(显示UIBarButtonItem菜单时获取事件)