| 9 | #include "gcodeviewparse.h" |
| 10 | |
| 11 | GcodeViewParse::GcodeViewParse(QObject *parent) : |
| 12 | QObject(parent) |
| 13 | { |
| 14 | absoluteMode = true; |
| 15 | absoluteIJK = false; |
| 16 | currentLine = 0; |
| 17 | debug = true; |
| 18 | |
| 19 | m_min = QVector3D(qQNaN(), qQNaN(), qQNaN()); |
| 20 | m_max = QVector3D(qQNaN(), qQNaN(), qQNaN()); |
| 21 | |
| 22 | m_minLength = qQNaN(); |
| 23 | } |
| 24 | |
| 25 | GcodeViewParse::~GcodeViewParse() |
| 26 | { |
nothing calls this directly
no outgoing calls
no test coverage detected