1
0
Fork 0

chore(carlton) Removed circumference suffix from measurements

This commit is contained in:
Joost De Cock 2020-06-30 15:10:04 +02:00
parent 15a078e8f1
commit e6d1b7e97c
5 changed files with 14 additions and 17 deletions

View file

@ -24,10 +24,7 @@ export default function (part) {
// Box pleat (bp)
points.bpStart = new Point(0, points.armholePitch.y)
points.bpTop = new Point(
measurements.chestCircumference * options.backPleat * -1,
points.armholePitch.y
)
points.bpTop = new Point(measurements.chest * options.backPleat * -1, points.armholePitch.y)
points.bpBottom = new Point(points.bpTop.x, points.cbWaist.y - bw / 2)
points.bpTriangleEdge = points.bpStart.shift(0, points.bpTop.dx(points.bpStart) * 0.6)
points.bpTriangleTip = points.bpStart.shift(90, points.bpStart.dx(points.bpTriangleEdge))