1
0
Fork 0
freesewing/designs/simon/src/frontright-seamless.mjs
2022-09-15 07:53:35 +02:00

106 lines
2.9 KiB
JavaScript

import { addButtons } from './shared.mjs'
export const draftFrontRightSeamless = ({
sa,
store,
Point,
points,
Path,
paths,
complete,
paperless,
macro,
options,
part,
}) => {
const width = store.get('buttonPlacketWidth')
points.placketTopFold1 = points.cfNeck.shift(0, width / 2)
points.placketTopFold2 = points.cfNeck.shift(0, width * 1.5)
points.placketTopEdge = points.cfNeck.shift(0, width * 2.5)
points.placketTopIn = points.cfNeck.shift(180, width / 2)
points.placketBottomFold1 = points.cfHem.shift(0, width / 2)
points.placketBottomFold2 = points.cfHem.shift(0, width * 1.5)
points.placketBottomEdge = points.cfHem.shift(0, width * 2.5)
points.placketBottomIn = points.cfHem.shift(180, width / 2)
paths.seam.line(points.placketTopEdge).line(points.placketBottomEdge).line(points.cfHem).close()
// Complete pattern?
if (complete) {
// Placket help lines
paths.frontCenter = new Path().move(points.cfNeck).line(points.cfHem).attr('class', 'help')
if (!options.seperateButtonholePlacket) {
// Match lines are only displayed on attached plackets
paths.frontCenter.attr('data-text', 'matchHere').attr('data-text-class', 'text-xs center')
}
paths.placketFold1 = new Path()
.move(points.placketTopFold1)
.line(points.placketBottomFold1)
.attr('class', 'dotted')
paths.placketFold2 = new Path()
.move(points.placketTopFold2)
.line(points.placketBottomFold2)
.attr('class', 'dotted')
paths.placketInnerFold = new Path()
.move(points.placketBottomIn)
.line(points.placketTopIn)
.attr('class', 'dotted')
macro('sprinkle', {
snippet: 'notch',
on: [
'placketTopFold1',
'placketTopFold2',
'placketBottomFold1',
'placketBottomFold2',
'cfNeck',
'cfHem',
],
})
// Buttons
addButtons(part)
// Title
macro('title', { at: points.title, nr: 1, title: 'frontRight' })
if (sa) {
paths.saFromArmhole
.line(new Point(points.placketTopEdge.x, points.placketTopEdge.y - sa))
.line(points.placketTopEdge)
.move(points.placketBottomEdge)
.line(points.placketBottomEdge.shift(-90, sa * 3))
.line(paths.hemSa.start())
}
}
// Paperless?
if (paperless) {
macro('hd', {
from: points.hps,
to: points.placketTopEdge,
y: points.hps.y - sa - 15,
})
macro('hd', {
from: points.s3ArmholeSplit,
to: points.placketTopEdge,
y: points.hps.y - sa - 30,
})
macro('hd', {
from: points.armhole,
to: points.placketTopEdge,
y: points.hps.y - sa - 45,
})
macro('vd', {
from: points.placketTopEdge,
to: points.s3CollarSplit,
x: points.placketTopEdge.x + sa + 15,
})
macro('vd', {
from: points.placketBottomEdge,
to: points.placketTopEdge,
x: points.placketTopEdge.x + sa + 15,
})
}
return part
}