@nebulaglitch/shopbot
Version:
A library to generate shopbot output
29 lines (24 loc) • 1.11 kB
JavaScript
'use strict';
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
const command = require('../command.cjs');
class CutCircleCenter extends command.default {
constructor(diameter = null, xCenterPoint = null, yCenterPoint = null, outInTrue = null, direction = null, startAngle = null, endAngle = null, plunge = null, repetitions = null, proportionX = null, proportionY = null, tabPocketSpiral = null, pullUpEnd = null, doPlungeZ = null){
super('CP');
this.args.push(diameter);
this.args.push(xCenterPoint);
this.args.push(yCenterPoint);
this.args.push(outInTrue);
this.args.push(direction);
this.args.push(startAngle);
this.args.push(endAngle);
this.args.push(plunge);
this.args.push(repetitions);
this.args.push(proportionX);
this.args.push(proportionY);
this.args.push(tabPocketSpiral);
this.args.push(pullUpEnd);
this.args.push(doPlungeZ);
}
}
exports.default = CutCircleCenter;
//# sourceMappingURL=cutcirclecenter.cjs.map