| 107 | } |
| 108 | |
| 109 | QSize GcodeViewParse::getModelResolution() const |
| 110 | { |
| 111 | return QSize(((m_modelUpperBounds.x() - m_modelLowerBounds.x()) / m_modelMinLineLength) + 1, |
| 112 | ((m_modelUpperBounds.y() - m_modelLowerBounds.y()) / m_modelMinLineLength) + 1); |
| 113 | } |
| 114 | |
| 115 | void GcodeViewParse::setAxisRotationVector(RotationAxis axis, const QVector3D &vector) |
| 116 | { |
no test coverage detected