From f32f22abaea380a6259bf68b0d98b9153b078e3e Mon Sep 17 00:00:00 2001 From: Sandy Noble Date: Sun, 25 Jun 2017 17:22:29 +0100 Subject: [PATCH] v2.4.3 fixes for D2S gcode import --- polargraphcontroller.pde | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/polargraphcontroller.pde b/polargraphcontroller.pde index 01b8c53..cbbbbea 100644 --- a/polargraphcontroller.pde +++ b/polargraphcontroller.pde @@ -58,7 +58,7 @@ import java.lang.reflect.Method; int majorVersionNo = 2; int minorVersionNo = 4; -int buildNo = 2; +int buildNo = 3; String programTitle = "Polargraph Controller v" + majorVersionNo + "." + minorVersionNo + " build " + buildNo; ControlP5 cp5; @@ -1330,7 +1330,7 @@ RShape loadShapeFromGCodeFile(String filename) { boolean reportStatus = true; while ((line = reader.readLine ()) != null) { lineNo++; - println("Line: " + line); +// println("Line: " + line); if (reportStatus) { float percent = ((float)lineNo / (float)countLines) * 100.0; @@ -1354,7 +1354,7 @@ RShape loadShapeFromGCodeFile(String filename) { println(e.toString()); continue; } - println("Ins: " + ins); +// println("Ins: " + ins); Integer code = Math.round(ins.get("G")); Float z = ins.get("Z");