Created
December 23, 2013 14:55
-
-
Save taiko19xx/8098419 to your computer and use it in GitHub Desktop.
プロジェクションマッピング勉強会(openFramework)で作ったスクリプトその1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// add [ int lineLine ] in testApp.h | |
void testApp::draw(){ | |
if(lineLine == RECT_SIZE) { | |
lineLine = 0; | |
} | |
ofSetColor(255, 255, 255, 255-lineLine); | |
ofRect(0, 0+lineLine, RECT_SIZE, 20); | |
// ofxSyphon | |
m_syphonClient.draw(50, 50); | |
m_mainOutputSyphonServer.publishScreen(); | |
lineLine = lineLine + 5; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment