Update front.mjs
This commit is contained in:
parent
adefbe7d18
commit
d0c190263a
1 changed files with 6 additions and 3 deletions
|
@ -50,18 +50,21 @@ export const front = {
|
||||||
waistAngle -= 180
|
waistAngle -= 180
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const flyConst = 14
|
||||||
|
store.set('flyConst',flyConst)
|
||||||
|
|
||||||
points.flyTop = points.pW.shift(
|
points.flyTop = points.pW.shift(
|
||||||
points.pW.angle(points.pZ) - 180 + waistAngle,
|
points.pW.angle(points.pZ) - 180 + waistAngle,
|
||||||
halfInch * flyWidth
|
flyConst * flyWidth
|
||||||
)
|
)
|
||||||
points.flyBottom = points.flyTop.shift(
|
points.flyBottom = points.flyTop.shift(
|
||||||
points.pW.angle(points.pZ),
|
points.pW.angle(points.pZ),
|
||||||
points.pW.dist(points.pZ) - halfInch * flyWidth
|
points.pW.dist(points.pZ) - flyConst * flyWidth
|
||||||
)
|
)
|
||||||
|
|
||||||
points.pZcpFB = points.pZ.shift(
|
points.pZcpFB = points.pZ.shift(
|
||||||
points.pW.angle(points.pZ) - waistAngle,
|
points.pW.angle(points.pZ) - waistAngle,
|
||||||
halfInch * flyWidth * cc
|
flyConst * flyWidth * cc
|
||||||
)
|
)
|
||||||
points.pFBcpZ = points.flyBottom.shift(points.pW.angle(points.pZ), halfInch * flyWidth * cc)
|
points.pFBcpZ = points.flyBottom.shift(points.pW.angle(points.pZ), halfInch * flyWidth * cc)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue