├── .gitignore ├── Analog.cpp ├── Analog.h ├── CMakeLists.txt ├── Configure.cpp ├── Configure.h ├── ControllerDevice.cpp ├── ControllerDevice.h ├── Gestures.cpp ├── Gestures.h ├── HandSelector.cpp ├── HandSelector.h ├── HardwareDetection.cpp ├── HardwareDetection.h ├── Imaging.cpp ├── Imaging.h ├── LICENSE ├── LeapData.cpp ├── LeapData.h ├── README.md ├── Tracker.cpp ├── Tracker.h ├── cmake ├── FindEigen3.cmake ├── FindJsonCpp.cmake └── FindLeapMotion.cmake ├── com_osvr_LeapMotion.cpp └── com_osvr_LeapMotion.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/.gitignore -------------------------------------------------------------------------------- /Analog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/Analog.cpp -------------------------------------------------------------------------------- /Analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/Analog.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Configure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/Configure.cpp -------------------------------------------------------------------------------- /Configure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/Configure.h -------------------------------------------------------------------------------- /ControllerDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/ControllerDevice.cpp -------------------------------------------------------------------------------- /ControllerDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/ControllerDevice.h -------------------------------------------------------------------------------- /Gestures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/Gestures.cpp -------------------------------------------------------------------------------- /Gestures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/Gestures.h -------------------------------------------------------------------------------- /HandSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/HandSelector.cpp -------------------------------------------------------------------------------- /HandSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/HandSelector.h -------------------------------------------------------------------------------- /HardwareDetection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/HardwareDetection.cpp -------------------------------------------------------------------------------- /HardwareDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/HardwareDetection.h -------------------------------------------------------------------------------- /Imaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/Imaging.cpp -------------------------------------------------------------------------------- /Imaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/Imaging.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/LICENSE -------------------------------------------------------------------------------- /LeapData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/LeapData.cpp -------------------------------------------------------------------------------- /LeapData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/LeapData.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/README.md -------------------------------------------------------------------------------- /Tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/Tracker.cpp -------------------------------------------------------------------------------- /Tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/Tracker.h -------------------------------------------------------------------------------- /cmake/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/cmake/FindEigen3.cmake -------------------------------------------------------------------------------- /cmake/FindJsonCpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/cmake/FindJsonCpp.cmake -------------------------------------------------------------------------------- /cmake/FindLeapMotion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/cmake/FindLeapMotion.cmake -------------------------------------------------------------------------------- /com_osvr_LeapMotion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/com_osvr_LeapMotion.cpp -------------------------------------------------------------------------------- /com_osvr_LeapMotion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSVR/OSVR-Leap-Motion/HEAD/com_osvr_LeapMotion.json --------------------------------------------------------------------------------