fix(titan): Added missing option to list
This commit is contained in:
parent
a08eca0d09
commit
aa78fb52dc
3 changed files with 1 additions and 2 deletions
|
@ -15,6 +15,7 @@ export default {
|
||||||
advanced: [
|
advanced: [
|
||||||
'crossSeamCurveStart',
|
'crossSeamCurveStart',
|
||||||
'crossSeamCurveBend',
|
'crossSeamCurveBend',
|
||||||
|
'crossSeamCurveAngle',
|
||||||
'crotchSeamCurveStart',
|
'crotchSeamCurveStart',
|
||||||
'crotchSeamCurveBend',
|
'crotchSeamCurveBend',
|
||||||
'crotchSeamCurveAngle',
|
'crotchSeamCurveAngle',
|
||||||
|
|
|
@ -157,7 +157,6 @@ export default (part) => {
|
||||||
if (points.cbSeat.x < points.waistX.x) {
|
if (points.cbSeat.x < points.waistX.x) {
|
||||||
let delta = points.cbSeat.dx(points.waistX)
|
let delta = points.cbSeat.dx(points.waistX)
|
||||||
points.waistIn = points.waistX.shift(180, delta * (1 - options.waistBalance))
|
points.waistIn = points.waistX.shift(180, delta * (1 - options.waistBalance))
|
||||||
console.log('balancing waist', points.waistIn)
|
|
||||||
} else points.waistIn = points.waistX
|
} else points.waistIn = points.waistX
|
||||||
let width = points.waistX.x
|
let width = points.waistX.x
|
||||||
points.waistOut = points.waistIn.shift(180, width)
|
points.waistOut = points.waistIn.shift(180, width)
|
||||||
|
|
|
@ -77,7 +77,6 @@ export default (part) => {
|
||||||
points.crotchSeamCurveCp1 = points.fork
|
points.crotchSeamCurveCp1 = points.fork
|
||||||
.shiftFractionTowards(points.crotchSeamCurveMax, options.crotchSeamCurveBend)
|
.shiftFractionTowards(points.crotchSeamCurveMax, options.crotchSeamCurveBend)
|
||||||
.rotate(options.crotchSeamCurveAngle * -1, points.fork)
|
.rotate(options.crotchSeamCurveAngle * -1, points.fork)
|
||||||
console.log(points.crotchSeamCurveCp1)
|
|
||||||
points.crotchSeamCurveCp2 = points.crotchSeamCurveStart.shiftFractionTowards(
|
points.crotchSeamCurveCp2 = points.crotchSeamCurveStart.shiftFractionTowards(
|
||||||
points.crotchSeamCurveMax,
|
points.crotchSeamCurveMax,
|
||||||
options.crotchSeamCurveBend
|
options.crotchSeamCurveBend
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue