1
0
Fork 0

Minor code cleanup.

This commit is contained in:
Thrunic 2024-05-01 10:06:08 -04:00
parent e530528095
commit adeb3fbe0b
2 changed files with 1 additions and 36 deletions

View file

@ -17,41 +17,6 @@ function draftFront({
utils,
scale,
}) {
// Todo:
// - (DONE) Derive points from measurements.
// - (DONE) Add options.
// - (DONE) Derive points from measurements + options.
// - (DONE) Scoop the crotch.
// - (DONE) Add logo and dimension box.
// - (DONE) Add cut instructions (2, mirrored, from main fabric)
// - (DONE) Add dimensions.
// - (DONE) Onto the back piece.
// - (DONE) Onto the bib.
// - Onto the pockets.
// - (DONE) Slash Pockets
// - (DONE) Bib Pocket
// - (DONE) Back Pockets
// - (DONE) Carpenter Pockets
// - (DONE) Hammer Loop
// - (DONE) Fix the bib piece so that the waist seam is equal in length to the front piece's waist seam.
// - (DONE) Add the bib placket.
// - (DONE) Add the front waistband.
// - Add seam and hem allowances, and dimension macros, cutlist, and titles and logo snippets to all parts.
// - (DONE) Front
// - (DONE) Back
// - (DONE) Bib
// - (DONE) Plackets
// - (DONE) Waistband
// - (DONE) Bib
// - Pockets
// - (DONE) Slash
// - (DONE) Bib
// - (DONE) Back
// - (DONE) Carpenter
// - Hammer Loop
// - (DONE) Fix strap length calculation.
// - Hide options that are not applicable (for example, slash pocket options if the slash pocket is disabled.
points.cfWaist = new Point(
-measurements.waistFrontArc * (1 + options.waistEase) * (1 - options.waistBalance),
0

View file

@ -20,7 +20,7 @@ function draftPocketSlash({
const waistDist = store.get('waistDist')
// and draft the points for the pocket outline.
// Draft the points for the pocket outline.
points.centerTop = new Point(0, 0)
points.centerBottom = new Point(0, waistDist * options.pocketSlashHeight)
points.topRight = new Point(waistDist * options.pocketSlashWidth, 0)