1
0
Fork 0

sparkles: Sleevecap part, small fixes and scalebox

This commit is contained in:
Joost De Cock 2018-08-20 14:33:29 +02:00
parent 22cf515068
commit 52f6e7e850
10 changed files with 277 additions and 197 deletions

View file

@ -1,12 +1,7 @@
export function seamLine(side, points, Path) {
export function saBase(side, points, Path) {
let path = new Path();
if (side === "back") {
path.move(points.cbNeck);
path.line(points.cbHips);
} else {
path.move(points.cfNeck);
path.line(points.cfHips);
}
if (side === "back") path.move(points.cbHips);
else path.move(points.cfHips);
path
.line(points.hips)
.line(points.armhole)
@ -19,7 +14,6 @@ export function seamLine(side, points, Path) {
} else {
path.curve(points.neckCp2, points.cfNeck, points.cfNeck);
}
path.close().attr("class", "fabric");
return path;
}
@ -41,7 +35,6 @@ export function shoulderToArmholePitch(points, Path) {
}
export function dimensions(macro, points, Path, sa) {
console.log("points for dimensions", points);
macro("pd", {
path: new Path()
.move(points.armhole)