1
0
Fork 0

chore(hugo) Removed circumference suffix from measurements

This commit is contained in:
Joost De Cock 2020-06-28 13:09:22 +02:00
parent b3483b30b2
commit 639f92ba78
6 changed files with 14 additions and 17 deletions

View file

@ -13,8 +13,7 @@ export default function (part) {
} = part.shorthand()
let width = (measurements.hpsToWaistBack + measurements.waistToHips) * options.ribbingHeight * 2
let length =
measurements.wristCircumference * (1 + options.cuffEase) * (1 - options.ribbingStretch)
let length = measurements.wrist * (1 + options.cuffEase) * (1 - options.ribbingStretch)
points.topLeft = new Point(0, 0)
points.bottomLeft = new Point(0, width)