Fix for #1467 Titan Waist Height
This commit is contained in:
parent
f75c0a3926
commit
e80978337b
2 changed files with 2 additions and 2 deletions
|
@ -195,7 +195,7 @@ export default (part) => {
|
||||||
if (options.waistHeight < 1 || absoluteOptions.waistbandWidth > 0) {
|
if (options.waistHeight < 1 || absoluteOptions.waistbandWidth > 0) {
|
||||||
points.styleWaistOut = drawOutseam()
|
points.styleWaistOut = drawOutseam()
|
||||||
.reverse()
|
.reverse()
|
||||||
.shiftAlong(measurements.waistToHips + absoluteOptions.waistbandWidth)
|
.shiftAlong(measurements.waistToHips * (1 - options.waistHeight) + absoluteOptions.waistbandWidth)
|
||||||
points.styleWaistIn = utils.beamsIntersect(
|
points.styleWaistIn = utils.beamsIntersect(
|
||||||
points.styleWaistOut,
|
points.styleWaistOut,
|
||||||
points.styleWaistOut.shift(points.waistOut.angle(points.waistIn), 10),
|
points.styleWaistOut.shift(points.waistOut.angle(points.waistIn), 10),
|
||||||
|
|
|
@ -273,7 +273,7 @@ export default (part) => {
|
||||||
// Only now style the waist lower if requested
|
// Only now style the waist lower if requested
|
||||||
if (options.waistHeight < 1 || absoluteOptions.waistbandWidth > 0) {
|
if (options.waistHeight < 1 || absoluteOptions.waistbandWidth > 0) {
|
||||||
points.styleWaistOut = drawOutseam().shiftAlong(
|
points.styleWaistOut = drawOutseam().shiftAlong(
|
||||||
measurements.waistToHips + absoluteOptions.waistbandWidth
|
measurements.waistToHips *(1 - options.waistHeight) + absoluteOptions.waistbandWidth
|
||||||
)
|
)
|
||||||
points.styleWaistIn = utils.beamsIntersect(
|
points.styleWaistIn = utils.beamsIntersect(
|
||||||
points.styleWaistOut,
|
points.styleWaistOut,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue