returns the previous touch location in OpenGL coordinates
| 64 | |
| 65 | // returns the previous touch location in OpenGL coordinates |
| 66 | Vec2 EventMouse::getPreviousLocation() const |
| 67 | { |
| 68 | return Director::getInstance()->convertToGL(_prevPoint); |
| 69 | } |
| 70 | |
| 71 | // returns the start touch location in OpenGL coordinates |
| 72 | Vec2 EventMouse::getStartLocation() const |
nothing calls this directly
no test coverage detected