实现精灵沿着圆形轨迹运动

Posted zsychanpin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实现精灵沿着圆形轨迹运动相关的知识,希望对你有一定的参考价值。

(原文地址:http://blog.csdn.net/while0/article/details/26008033)


使用样条曲线模拟圆形轨迹,当切割数量足够大时,逐渐逼近圆形。

    Point pos(100, 100); //start point
    m_animSprite->setPosition(pos);

    int count = 8;
    float angle = 360.f/count;
    float radius = 50.f;
    auto array = PointArray::create(count + 1);
    Point pt0(radius, 0.f), pt;
    for (int i = 0; i <= count; i++)
    {
        pt = pt0 + Point(-radius, 0);
        array->addControlPoint(pt);
        pt0 = pt0.rotateByAngle(Point::ZERO, CC_DEGREES_TO_RADIANS(angle));
    }
    auto action = CardinalSplineBy::create(3, array, 0);
    auto seq = RepeatForever::create(action);
    m_animSprite->runAction(seq);

以上是关于实现精灵沿着圆形轨迹运动的主要内容,如果未能解决你的问题,请参考以下文章

2.蟒蛇程序

计算椭圆运动轨迹的算法

Java如何让多个图片都按照一定轨迹下落

matlab机械臂五次多项式仿真出错

自定义控件-绕着圆形轨迹旋转的小球

自定义控件-绕着圆形轨迹旋转的小球