Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
n1ckfg committed Jan 26, 2014
1 parent d3890dd commit 9ab598c
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Pointcloud_Render.pde
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ void draw() {
//~~~
if(fileType.equals("png")) saveFrame(filePath + "/" + fileName + zeroPadding(counter+1,imgNames.size()) + "." + fileType);
if(counter<imgNames.size())counter++;
if(counter==imgNames.size()) exit();
if(counter==imgNames.size()){
openAppFolderHandler();
exit();
}
}

static final int gray(color value) {
Expand Down
Binary file modified bin/Pointcloud_Render_osx.zip
Binary file not shown.
Binary file modified bin/Pointcloud_Render_win32.zip
Binary file not shown.
Binary file removed data/shot1_frame0.png
Binary file not shown.
Binary file removed data/shot1_frame1.png
Binary file not shown.
Binary file removed data/shot1_frame2.png
Binary file not shown.

0 comments on commit 9ab598c

Please sign in to comment.