All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
MouseRotateGesture.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "VectorMath.h"
6 #include "WindowsInput.h"
7 
8 namespace Eegeo
9 {
10  namespace Windows
11  {
12  namespace Input
13  {
15  {
16  private:
17  IWindowsInputHandler* pHandler;
18 
19  bool m_rotating;
20 
21  v2 m_anchor;
22  float m_totalRotation;
23  public:
25 
26  void PointerDown(const MouseInputEvent& event);
27  void PointerUp(const MouseInputEvent& event);
28  void PointerMove(const MouseInputEvent& event);
29  };
30  }
31  }
32 }