⚠️ this is the old version, now we are rewriting/refactoring this library, so we can usesvelte.js
framework
basically a gcode library for making the creation of gcode programs easily and efficiently for CNC machines.
// example
const G0 = new G0({x:0, y:0});
for(let i=0; i < 10; i++) {
G0.moveTo({
left: Math.random() * 100,
top: Math.random() * 100
});
}
⚠️ the project is not completed, don't use it (at least for now, in the future maybe yes) but you can suggest some ideas