Skip to content

Commit

Permalink
fix screenshot size and clean some files
Browse files Browse the repository at this point in the history
  • Loading branch information
maiatoday committed May 20, 2011
1 parent 198dfa8 commit 8cef281
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
Binary file removed bin/data/screenshot.png-0.png
Binary file not shown.
6 changes: 3 additions & 3 deletions src/testApp.cpp
Expand Up @@ -482,9 +482,9 @@ void testApp::keyPressed (int key)
break;
case '`':
ofImage screenImg;
screenImg.allocate(640, 480, OF_IMAGE_COLOR);
screenImg.grabScreen(0,0,640,480);
screenImg.saveImage("screenshot.png-"+ofToString(snapCounter)+".png");
screenImg.allocate(width, height, OF_IMAGE_COLOR);
screenImg.grabScreen(0,0,width,height);
screenImg.saveImage("screenshot-"+ofToString(snapCounter)+".png");

snapCounter++;
break;
Expand Down
5 changes: 4 additions & 1 deletion veloPeople.cbp
Expand Up @@ -5,7 +5,7 @@
<Option title="veloPeople" />
<Option pch_mode="2" />
<Option compiler="gcc" />
<Option virtualFolders="addons/;src/;addons/ofxOpenCv/src/;OpenNI/;OpenNI/Linux-x86/;data/;addons/ofxMSAPhysics/src/Callbacks/;addons/ofxMSAPhysics/src/Constraints/;addons/ofxMSAPhysics/src/Core/;addons/ofxMSAPhysics/src/;addons/ofxMSAPhysics/src/serialization/;addons/ofxObjCPointer/src/;" />
<Option virtualFolders="addons/;src/;addons/ofxOpenCv/src/;OpenNI/;OpenNI/Linux-x86/;data/;addons/ofxMSAPhysics/src/Callbacks/;addons/ofxMSAPhysics/src/Constraints/;addons/ofxMSAPhysics/src/Core/;addons/ofxMSAPhysics/src/;addons/ofxMSAPhysics/src/serialization/;addons/ofxObjCPointer/src/;data/text/;" />
<Option show_notes="0">
<notes>
<![CDATA[
Expand Down Expand Up @@ -239,6 +239,9 @@ http://www.keyboardmods.com/2010/12/howto-kinect-openninite-skeleton.html]]>
<Unit filename="bin/data/SamplesConfig.xml">
<Option virtualFolder="data/" />
</Unit>
<Unit filename="bin/data/text/sample.txt">
<Option virtualFolder="data/text/" />
</Unit>
<Unit filename="src/ColorSampler.cpp">
<Option virtualFolder="src/" />
</Unit>
Expand Down
2 changes: 1 addition & 1 deletion veloPeople.depend
Expand Up @@ -1536,7 +1536,7 @@
1300295407 /home/maia/oF/of_preRelease_v0062_linux_FAT/DataMote.h
"ofxMSAParticle.h"

1305823066 source:/home/maia/oF/of_preRelease_v0062_linux_FAT/apps/myApps/veloPeople/src/DataMote.cpp
1305874069 source:/home/maia/oF/of_preRelease_v0062_linux_FAT/apps/myApps/veloPeople/src/DataMote.cpp
"DataMote.h"

1305873053 /home/maia/oF/of_preRelease_v0062_linux_FAT/apps/myApps/veloPeople/src/DataMote.h
Expand Down

0 comments on commit 8cef281

Please sign in to comment.