fix(cornelius): Removed debug output
This commit is contained in:
parent
ee10be7c2e
commit
47dd560f9b
1 changed files with 9 additions and 15 deletions
|
@ -7,7 +7,6 @@ export default function (part) {
|
||||||
let halfInch = store.get('halfInch')
|
let halfInch = store.get('halfInch')
|
||||||
let flyWidth = store.get('flyWidth') *halfInch
|
let flyWidth = store.get('flyWidth') *halfInch
|
||||||
let flyLength = store.get('flyLength')
|
let flyLength = store.get('flyLength')
|
||||||
console.log( {flyWidth: flyWidth, flyLength: flyLength})
|
|
||||||
|
|
||||||
points.pA = new Point(0, 0)
|
points.pA = new Point(0, 0)
|
||||||
points.pB = points.pA.shift(180, flyWidth)
|
points.pB = points.pA.shift(180, flyWidth)
|
||||||
|
@ -16,11 +15,6 @@ export default function (part) {
|
||||||
points.pDcpC = points.pD.shift(180, flyWidth * cc)
|
points.pDcpC = points.pD.shift(180, flyWidth * cc)
|
||||||
points.pCcpD = points.pC.shift(270, flyWidth * cc)
|
points.pCcpD = points.pC.shift(270, flyWidth * cc)
|
||||||
|
|
||||||
console.log( points.pA )
|
|
||||||
console.log( points.pB )
|
|
||||||
console.log( points.pC )
|
|
||||||
console.log( points.pD )
|
|
||||||
|
|
||||||
paths.seam = new Path()
|
paths.seam = new Path()
|
||||||
.move(points.pA)
|
.move(points.pA)
|
||||||
.line(points.pB)
|
.line(points.pB)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue