returns the start touch location in OpenGL coordinates
| 70 | |
| 71 | // returns the start touch location in OpenGL coordinates |
| 72 | Vec2 EventMouse::getStartLocation() const |
| 73 | { |
| 74 | return Director::getInstance()->convertToGL(_startPoint); |
| 75 | } |
| 76 | |
| 77 | // returns the delta position between the current location and the previous location in OpenGL coordinates |
| 78 | Vec2 EventMouse::getDelta() const |
nothing calls this directly
no test coverage detected