1
0
Fork 0

fix(cornelius): Removed debug output

This commit is contained in:
joostdecock 2021-10-27 18:36:26 +02:00
parent ee10be7c2e
commit 47dd560f9b

View file

@ -7,7 +7,6 @@ export default function (part) {
let halfInch = store.get('halfInch')
let flyWidth = store.get('flyWidth') *halfInch
let flyLength = store.get('flyLength')
console.log( {flyWidth: flyWidth, flyLength: flyLength})
points.pA = new Point(0, 0)
points.pB = points.pA.shift(180, flyWidth)
@ -16,11 +15,6 @@ export default function (part) {
points.pDcpC = points.pD.shift(180, 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()
.move(points.pA)
.line(points.pB)