1
0
Fork 0
freesewing/packages/simon/src/buttonplacket.js

134 lines
3.4 KiB
JavaScript

import { addButtons } from './shared'
export default (part) => {
const {
utils,
sa,
Point,
points,
Path,
paths,
Snippet,
snippets,
complete,
paperless,
macro,
options,
store,
} = part.shorthand()
if (!options.seperateButtonPlacket || options.buttonPlacketStyle !== 'classic') {
part.paths = {}
part.snippets = {}
part.points = {}
return part
}
for (const id in paths) {
if (id !== 'seam') delete part.paths[id]
}
macro('flip')
const width = store.get('buttonPlacketWidth')
points.placketTopIn = utils.lineIntersectsCurve(
new Point(width / -2, points.cfNeck.y + 20),
new Point(width / -2, points.cfNeck.y - 20),
points.cfNeck,
points.cfNeckCp1,
points.neckCp2Front,
points.neck
)
points.placketTopOut = points.cfNeck.shift(0, width / 2)
points.placketTopEdge = points.cfNeck.shift(0, width * 1.5)
points.placketBottomIn = points.cfHem.shift(180, width / 2)
points.placketBottomOut = points.cfHem.shift(0, width / 2)
points.placketBottomEdge = points.cfHem.shift(0, width * 1.5)
paths.saBase = new Path()
.move(points.placketBottomIn)
.line(points.placketTopIn)
.join(paths.seam.split(points.placketTopIn)[1])
.line(points.placketTopEdge)
.line(points.placketBottomEdge)
paths.seam = paths.saBase.clone().close().attr('class', 'fabric')
// Complete pattern?
if (complete) {
// Placket help lines
paths.placketOuterFold = new Path()
.move(points.placketTopOut)
.line(points.placketBottomOut)
.attr('class', 'dotted')
macro('sprinkle', {
snippet: 'notch',
on: ['placketTopOut', 'placketBottomOut'],
})
// Buttons
addButtons(part)
// Grainline
points.grainlineFrom = points.placketBottomEdge.shift(180, width / 2)
points.grainlineTo = points.placketTopEdge.shift(180, width / 2)
macro('grainline', {
from: points.grainlineFrom,
to: points.grainlineTo,
})
// Title
points.title = new Point(points.placketTopOut.x, points.cfArmhole.y)
macro('title', {
at: points.title,
nr: '1b',
title: 'buttonPlacket',
scale: 0.75,
rotation: -90,
})
// Logo
points.logo = points.title.shift(-90, 120)
snippets.logo = new Snippet('logo', points.logo)
.attr('data-scale', 0.5)
.attr('data-rotate', -90)
if (sa) {
paths.sa = paths.saBase
.offset(sa * -1)
.line(new Point(points.placketBottomEdge.x + sa, points.placketBottomEdge.y + 3 * sa))
.line(new Point(points.placketBottomIn.x - sa, points.placketBottomIn.y + 3 * sa))
.close()
.attr('class', 'fabric sa')
}
}
// Paperless?
if (paperless) {
macro('hd', {
from: points.placketTopIn,
to: points.placketTopOut,
y: points.placketTopIn.y - 15 - sa,
})
macro('hd', {
from: points.placketTopIn,
to: points.placketTopEdge,
y: points.placketTopIn.y - 30 - sa,
})
macro('vd', {
from: points.placketBottomEdge,
to: points.placketTopEdge,
x: points.placketTopEdge.x + 15 + sa,
})
points.button0 = points.placketTopEdge
let j
for (let i = 0; i < options.buttons; i++) {
j = i + 1
macro('vd', {
from: points['button' + j],
to: points['button' + i],
x: points.placketTopIn.x - 15 - sa,
})
}
}
return part
}