Skip to content

momo-the-monster/ofxManyMouse

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

openFrameworks wrapper addon for Ryan C. Gordon's manymouse library.

With this addon you can easily read values from multiple mouse or trackball devices.

Instructions:

1. Add the ofxManyMouse to your project

2. #include "ofxManyMouse.h" in testApp.h

3. let testApp extend ofxManyMouse like this: 
       class testApp : public ofBaseApp, public ofxManyMouse { 

4. Add one or more of the following functions to testApp.h
       void mouseMoved(int device, int axis, int value);
       void mouseScroll(int device, int axis, int value);
       void mousePressed(int device, int button);
       void mouseReleased(int device, int button);
       void mouseDisconnect(int device);

5. Implement the function(s) in testApp.cpp
       void testApp::mouseMoved(int device, int axis, int value) {
          //do something with the values
       }

Good luck!


About

openFrameworks addon for manymouse, a great library to work with multiple mice or trackballs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 98.4%
  • C++ 1.6%