码迷,mamicode.com
首页 > 其他好文 > 详细

cocos2dx 手势识别

时间:2014-08-25 22:46:34      阅读:290      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   ar   art   div   

转自:http://blog.csdn.net/qq634416025/article/details/8685187

g_rGemertricRecognizer = new GeometricRecognizer;  
g_rGemertricRecognizer->loadTemplates();  

......
void HelloWorld::ccTouchMoved(cocos2d::CCTouch *pTouch, cocos2d::CCEvent *pEvent)
{
    CCPoint location = pTouch->getLocationInView();

    Point2D p_Point2DTemp;
    p_Point2DTemp.x=location.x;
    p_Point2DTemp.y=location.y;
    //记录
    p_2dPath.push_back(p_Point2DTemp);

}

void HelloWorld::ccTouchEnded(cocos2d::CCTouch *pTouch, cocos2d::CCEvent *pEvent)
{
    if (p_2dPath.size() < 1){
        return ;
    }

    RecognitionResult r = g_rGemertricRecognizer->recognize(p_2dPath);
    if (r.name != "Unknown" && r.score > 0.5)
    {
        CCLog("result.name = %s", r.name.c_str());
    }
    
    p_2dPath.clear();
}

 

cocos2dx 手势识别

标签:style   blog   http   color   os   io   ar   art   div   

原文地址:http://www.cnblogs.com/sevenyuan/p/3936000.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!