Skip to content

Commit

Permalink
v2.2.2 better startup options
Browse files Browse the repository at this point in the history
  • Loading branch information
euphy committed Jan 24, 2016
1 parent dba8bb5 commit 81b4525
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Machine.pde
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Machine
protected Rectangle imageFrame = new Rectangle(1500,1500,1000,1000);
protected Rectangle pictureFrame = new Rectangle(1600,1600,800,800);

protected Float stepsPerRev = 800.0;
protected Float stepsPerRev = 200.0;
protected Float mmPerRev = 95.0;

protected Float mmPerStep = null;
Expand Down
4 changes: 2 additions & 2 deletions polargraphcontroller.pde
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ import java.lang.reflect.Method;

int majorVersionNo = 2;
int minorVersionNo = 2;
int buildNo = 1;
int buildNo = 2;

String programTitle = "Polargraph Controller v" + majorVersionNo + "." + minorVersionNo + " build " + buildNo;
ControlP5 cp5;
Expand Down Expand Up @@ -2564,7 +2564,7 @@ public PVector getHomePoint()
public DisplayMachine getDisplayMachine()
{
if (displayMachine == null)
displayMachine = new DisplayMachine(new Machine(5000, 5000, 800.0, 95.0), machinePosition, machineScaling);
displayMachine = new DisplayMachine(new Machine(5000, 5000, 200.0, 95.0), machinePosition, machineScaling);

displayMachine.setOffset(machinePosition);
displayMachine.setScale(machineScaling);
Expand Down

0 comments on commit 81b4525

Please sign in to comment.