979899100101102103104105106107
} public List<LineSegment> toObjRedux(List<String> gcode, double arcSegmentLength) { GcodeParser gp = new GcodeParser(); for (String s : gcode) { gp.addCommand(s); } return getLinesFromParser(gp, arcSegmentLength); }