diff --git a/src/com/t_oster/liblasercut/drivers/Dummy.java b/src/com/t_oster/liblasercut/drivers/Dummy.java index 338c606de8b2d041ec07b49f1037cddbdc5516cc..067dcf9cc06bce0460eb5126a2a4fa0fc3b82440 100644 --- a/src/com/t_oster/liblasercut/drivers/Dummy.java +++ b/src/com/t_oster/liblasercut/drivers/Dummy.java @@ -232,7 +232,7 @@ public class Dummy extends LaserCutter { SVGWriter svg = new SVGWriter(this); // SVG debug output System.out.println("dummy-driver got LaserJob: "); //Â TODOÂ don't just print the parts and settins, but also the commands - //Â TODO if you have too much time, also implement some preview output (svg animation???) - would be nice for testing optimisations + //Â TODO improve SVG-debug output: support bitmaps, add animation for (JobPart p : job.getParts()) { svg.startPart(p.getClass().getSimpleName(), p.getDPI()); @@ -261,6 +261,7 @@ public class Dummy extends LaserCutter { } if (p instanceof RasterPart) { + System.out.println("RasterPart"); // TODO add raster output for SVG debug output RasterPart rp = ((RasterPart) p); if (rp.getLaserProperty() != null && !(rp.getLaserProperty() instanceof PowerSpeedFocusProperty)) @@ -272,6 +273,7 @@ public class Dummy extends LaserCutter { } if (p instanceof Raster3dPart) { + System.out.println("Raster3dPart"); Raster3dPart rp = (Raster3dPart) p; if (rp.getLaserProperty() != null && !(rp.getLaserProperty() instanceof PowerSpeedFocusProperty)) {