Skip to content

Commit

Permalink
update viewer from 30fps to 60fps
Browse files Browse the repository at this point in the history
  • Loading branch information
GoLez28 committed Oct 30, 2023
1 parent 65dc1c8 commit 11ee5a9
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Binary file modified TrackingSmoothing/viewer/lib/tagTrackingViewer.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions TrackingSmoothing/viewer/source/tagTrackingViewer.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* autogenerated by Processing revision 1283 on 2023-10-09 */
/* autogenerated by Processing revision 1283 on 2023-10-29 */
import processing.core.*;
import processing.data.*;
import processing.event.*;
Expand Down Expand Up @@ -26,7 +26,7 @@ public class tagTrackingViewer extends PApplet {

public void setup() {
/* size commented out by preprocessor */;
frameRate(25);
frameRate(60);
/* noSmooth commented out by preprocessor */;
oscP5 = new OscP5(this, 15460);
myRemoteLocation = new NetAddress("127.0.0.1", 15460);
Expand Down
2 changes: 1 addition & 1 deletion TrackingSmoothing/viewer/source/tagTrackingViewer.pde
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ NetAddress myRemoteLocation;

void setup() {
size(800, 800, P3D);
frameRate(25);
frameRate(60);
noSmooth();
oscP5 = new OscP5(this, 15460);
myRemoteLocation = new NetAddress("127.0.0.1", 15460);
Expand Down
Binary file modified TrackingSmoothing/viewer/tagTrackingViewer.exe
Binary file not shown.

0 comments on commit 11ee5a9

Please sign in to comment.