| 29 | void clear() { m_raw.clear(); } |
| 30 | bool has(Axis axis) const { return (m_mask & (1 << int(axis))) != 0; } |
| 31 | float value(Axis axis) const { return m_axis[axis]; } |
| 32 | bool has(char axis) const; |
| 33 | bool has_value(char axis, float &value) const; |
| 34 | float new_X(const GCodeReader &reader) const { return this->has(X) ? this->x() : reader.x(); } |
no outgoing calls
no test coverage detected