ofxInteractiveSurface icon indicating copy to clipboard operation
ofxInteractiveSurface copied to clipboard

For Mapping ofTextures to surfaces making transformations and masking all in one process

Results 2 ofxInteractiveSurface issues
Sort by recently updated
recently updated
newest added

Do i need to do something to start the calibration because the app builds and then is running but all i can see is the help menu and the debug...

For OS X, and likely also for Linux: ``` ofAddListener(ofEvents().mouseMoved, this, &ofxSurface::_mouseMoved); ofAddListener(ofEvents().mousePressed, this, &ofxSurface::_mousePressed); ofAddListener(ofEvents().mouseDragged, this, &ofxSurface::_mouseDragged); ofAddListener(ofEvents().mouseReleased, this, &ofxSurface::_mouseReleased); ofAddListener(ofEvents().keyPressed, this, &ofxSurface::_keyPressed); ``` should be ``` ofAddListener(ofEvents.mouseMoved, this,...