1
0
Fork 0

🚧 Ongoing work on CFP

This commit is contained in:
Joost De Cock 2019-05-02 12:39:30 +02:00
parent 7cc4130a11
commit 6b6f6fd7cd
54 changed files with 1360 additions and 3295 deletions

View file

@ -0,0 +1,22 @@
export default function(part) {
let { Point, Path, points, paths, complete, paperless } = part.shorthand();
points.start = new Point(0, 0);
points.end = new Point(75, 0);
paths.demo = new Path()
.move(points.start)
.line(points.end)
.attr("data-text", "thisIsTheFrontPart")
.attr("data-text-class", "center");
// Complete?
if (complete) {
}
// Paperless?
if (paperless) {
}
return part;
}