returns the current touch location in OpenGL coordinates
| 58 | |
| 59 | // returns the current touch location in OpenGL coordinates |
| 60 | Vec2 EventMouse::getLocation() const |
| 61 | { |
| 62 | return Director::getInstance()->convertToGL(_point); |
| 63 | } |
| 64 | |
| 65 | // returns the previous touch location in OpenGL coordinates |
| 66 | Vec2 EventMouse::getPreviousLocation() const |
nothing calls this directly
no test coverage detected