| 60 | } |
| 61 | |
| 62 | QList<LineSegment*> GcodeViewParse::toObjRedux(QList<QString> gcode, double arcPrecision, bool arcDegreeMode) |
| 63 | { |
| 64 | GcodeParser gp; |
| 65 | |
| 66 | foreach (QString s, gcode) { |
| 67 | gp.addCommand(s); |
| 68 | } |
| 69 | |
| 70 | return getLinesFromParser(&gp, arcPrecision, arcDegreeMode); |
| 71 | } |
| 72 | |
| 73 | QList<LineSegment*> GcodeViewParse::getLineSegmentList() |
| 74 | { |
nothing calls this directly
no outgoing calls
no test coverage detected