A shitload of PCB progress

This commit is contained in:
Bán Dénes 2020-07-18 22:58:44 +02:00
parent 5a380fa58c
commit f71368b835
12 changed files with 541 additions and 153 deletions

View file

@ -11,7 +11,7 @@ const line = exports.line = (a, b) => {
}
exports.circle = (p, r) => {
return new m.paths.Circle(p, r)
return {paths: {circle: new m.paths.Circle(p, r)}}
}
exports.rect = (w, h, o=[0, 0]) => {