Add files via upload
This commit is contained in:
parent
38235e702f
commit
c9f3f0da19
1 changed files with 5 additions and 18 deletions
|
@ -34,32 +34,19 @@ function BuildMainShape(part, frontPart) {
|
||||||
measurements.seatCircumference > waist
|
measurements.seatCircumference > waist
|
||||||
? measurements.seatCircumference
|
? measurements.seatCircumference
|
||||||
: waist;
|
: waist;
|
||||||
let hip =
|
/*let hip =
|
||||||
measurements.hipsCircumference > waist
|
measurements.hipsCircumference > waist
|
||||||
? measurements.hipsCircumference
|
? measurements.hipsCircumference
|
||||||
: waist;
|
: waist;*/
|
||||||
|
|
||||||
dartCalc(options, seat, seatEase, waist, waistEase);
|
dartCalc(options, seat, seatEase, waist, waistEase);
|
||||||
|
|
||||||
/*
|
|
||||||
console.log(
|
|
||||||
"seat: " +
|
|
||||||
seat +
|
|
||||||
" seatEase: " +
|
|
||||||
seatEase +
|
|
||||||
" waist: " +
|
|
||||||
waist +
|
|
||||||
" waistEase: " +
|
|
||||||
waistEase
|
|
||||||
);
|
|
||||||
*/
|
|
||||||
|
|
||||||
let nrOfDarts = options.nrOfDarts;
|
let nrOfDarts = options.nrOfDarts;
|
||||||
let dartSize = options.frontDartSize;
|
let dartSize = options.frontDartSize;
|
||||||
if (frontPart == false) {
|
if (frontPart == false) {
|
||||||
dartSize = options.backDartSize;
|
dartSize = options.backDartSize;
|
||||||
}
|
}
|
||||||
//console.log("dartSize: " + dartSize + " nrOfDarts: " + nrOfDarts);
|
|
||||||
|
|
||||||
if (dartSize <= 0) {
|
if (dartSize <= 0) {
|
||||||
nrOfDarts = 0;
|
nrOfDarts = 0;
|
||||||
|
@ -75,7 +62,7 @@ function BuildMainShape(part, frontPart) {
|
||||||
waist += waistEase;
|
waist += waistEase;
|
||||||
|
|
||||||
let sideSeam = seat / 4 + sideSeamShift;
|
let sideSeam = seat / 4 + sideSeamShift;
|
||||||
let hipSeam = hip / 4 + sideSeamShift;
|
//let hipSeam = hip / 4 + sideSeamShift;
|
||||||
|
|
||||||
points.lWaist = new Point(0, 0);
|
points.lWaist = new Point(0, 0);
|
||||||
points.lLeg = new Point(0, skirtLength);
|
points.lLeg = new Point(0, skirtLength);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue