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

cocos2dx 坐标系

时间:2015-08-31 17:32:34      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:current   screen   returns   touch   坐标系   

cocos2dx中有几种坐标系:

  1. GL坐标系以左下角为原点,向上为Y,向左为X

  2. 屏幕坐标系以左上角为原点,向下为Y,向右为X


    屏幕坐标系使用的是不同的坐标系统,原点在屏幕左上角,x轴向右,y轴向下。iOS的屏幕触摸事件CCTouch传入的位置信息使用的是该坐标系。因此在Cocos2D-x中对触摸事件做出响应前,需要首先把触摸点转化到OpenGL坐标系。

①从触摸点获取到在屏幕坐标系中的坐标
// returns the current touch location in screen coordinatesCCPoint CCTouch::() const { 
    return m_point; 
}

②从触摸点获取到在OpenGL坐标系中的坐标// returns the current touch location in OpenGL coordinatesCCPoint CCTouch::getLocation() const{ 
    return CCDirector::sharedDirector()->convertToGL(m_point); 
}

cocos2dx 坐标系

标签:current   screen   returns   touch   坐标系   

原文地址:http://cxdbk.blog.51cto.com/8808491/1690165

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