@nebulaglitch/gcode
Version:
A library to generate gcode output
15 lines (10 loc) • 361 B
JavaScript
;
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
const command = require('../command.cjs');
class FeedVelocity extends command.default {
constructor(velocity = 100){
super('F', velocity);
}
}
exports.default = FeedVelocity;
//# sourceMappingURL=feedvelocity.cjs.map