1
0
Fork 0

chore(brian) Removed circumference suffix from measurements

This commit is contained in:
Joost De Cock 2020-06-30 15:13:28 +02:00
parent 4b918d7c75
commit a0da79a1e0
5 changed files with 16 additions and 26 deletions

View file

@ -1,4 +1,4 @@
export default part => {
export default (part) => {
let {
debug,
store,
@ -33,10 +33,7 @@ export default part => {
0,
top + measurements.shoulderToWrist * (1 + options.sleeveLengthBonus)
)
points.wristRight = points.centerWrist.shift(
0,
(measurements.wristCircumference * (1 + options.cuffEase)) / 2
)
points.wristRight = points.centerWrist.shift(0, (measurements.wrist * (1 + options.cuffEase)) / 2)
points.wristLeft = points.wristRight.rotate(180, points.centerWrist)
points.sleeveTip = paths.sleevecap.shiftFractionAlong(0.5)