gpt4 book ai didi

iphone - 找到 Sprite 的旋转方向,即顺时针或逆时针

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:23:02 25 4
gpt4 key购买 nike

我一直在为此自责,因为我认为这是一个简单的问题,但不知何故我就是找不到解决方案。

我正在根据触摸移动事件围绕其 anchor 旋转 CCSprite。这是我用来旋转 Sprite 的代码。

CGPoint previousLocation = [touch previousLocationInView:[touch view]];
CGPoint newLocation = [touch locationInView:[touch view]];

//preform all the same basic rig on both the current touch and previous touch
CGPoint previousGlLocation = [[CCDirector sharedDirector] convertToGL:previousLocation];
CGPoint newGlLocation = [[CCDirector sharedDirector] convertToGL:newLocation];

CCSprite *handle = (CCSprite*)[_spriteManager getChildByTag:HANDLE_TAG];

CGPoint previousVector = ccpSub(previousGlLocation, handle.position);
CGFloat firstRotateAngle = -ccpToAngle(previousVector);
CGFloat previousTouch = CC_RADIANS_TO_DEGREES(firstRotateAngle);

CGPoint currentVector = ccpSub(newGlLocation, handle.position);
CGFloat rotateAngle = -ccpToAngle(currentVector);
CGFloat currentTouch = CC_RADIANS_TO_DEGREES(rotateAngle);

float rotateAmount = (currentTouch - previousTouch);
handle.rotation += rotateAmount;

我需要以某种方式找到旋转方向,即顺时针或逆时针方向。我尝试通过在 rotateAmount 值上设置“if”条件来做到这一点。但这在特定情况下不起作用。

例如。如果用户沿顺时针方向旋转 Sprite ,在这种情况下,rotateAmount 值将为正值,范围为 0 - 359。当用户即将完成圆圈时,条件将不成立,方向将变为逆时针方向。

有没有更好的检测旋转方向的方法?

最佳答案

试试这个环绕式完整性检查:

float rotateAmount = (currentTouch - previousTouch);

if (rotateAmount > 180)
rotateAmount -= 360;
else if (rotateAmount < -180)
rotateAmount += 360;

handle.rotation += rotateAmount;

关于iphone - 找到 Sprite 的旋转方向,即顺时针或逆时针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15885441/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com