1
0
Fork 0

🎨 Updated prettier config

This commit is contained in:
Joost De Cock 2019-08-03 15:03:33 +02:00
parent b8e632998b
commit 6710d76b08
401 changed files with 13193 additions and 15620 deletions

View file

@ -1,68 +1,68 @@
export default function(part) {
let { macro, Point, Path, points, paths, store } = part.shorthand();
let { macro, Point, Path, points, paths, store } = part.shorthand()
let y = store.get("y");
let w = store.get("w");
y += 10;
points.ml = new Point(0, y);
points.mr = new Point(w, y);
let y = store.get('y')
let w = store.get('w')
y += 10
points.ml = new Point(0, y)
points.mr = new Point(w, y)
paths.macros = new Path()
.move(points.ml)
.line(points.mr)
.attr("data-text", "macros");
.attr('data-text', 'macros')
y += 40;
macro("title", {
y += 40
macro('title', {
at: new Point(w / 2, y),
nr: 5,
title: "title"
});
title: 'title'
})
y += 40;
macro("grainline", {
y += 40
macro('grainline', {
from: new Point(0, y),
to: new Point(w, y)
});
})
y += 20;
macro("cutonfold", {
y += 20
macro('cutonfold', {
from: new Point(w, y),
to: new Point(0, y)
});
})
y += 70;
points.dimf = new Point(20, y);
points.dimt = new Point(w - 20, y + 120);
points.dimv = new Point(20, y + 80);
paths.dims = new Path().move(points.dimf)._curve(points.dimv, points.dimt);
macro("hd", {
y += 70
points.dimf = new Point(20, y)
points.dimt = new Point(w - 20, y + 120)
points.dimv = new Point(20, y + 80)
paths.dims = new Path().move(points.dimf)._curve(points.dimv, points.dimt)
macro('hd', {
from: points.dimf,
to: points.dimt,
text: "hd",
text: 'hd',
y: y - 15
});
macro("vd", {
})
macro('vd', {
from: points.dimt,
to: points.dimf,
text: "vd",
text: 'vd',
x: 0
});
macro("ld", {
})
macro('ld', {
from: points.dimf,
to: points.dimt,
text: "ld"
});
macro("pd", {
text: 'ld'
})
macro('pd', {
path: paths.dims,
text: "pd",
text: 'pd',
d: 10
});
})
y += 170;
macro("scalebox", {
y += 170
macro('scalebox', {
at: new Point(w / 2, y)
});
store.set("y", y);
})
store.set('y', y)
return part;
return part
}