1
0
Fork 0

Remove leftover testing console.log calls

This commit is contained in:
woutervdub 2021-03-03 10:01:25 -08:00
parent a74c7f3b3e
commit 2d6ab34823
2 changed files with 0 additions and 6 deletions

View file

@ -105,7 +105,6 @@ export default function (part) {
snippets.n2 = new Snippet( 'notch', points.pC.shiftTowards( points.pCcpF, halfInch *1.5 ) ); snippets.n2 = new Snippet( 'notch', points.pC.shiftTowards( points.pCcpF, halfInch *1.5 ) );
points.logo = points.pA.shiftFractionTowards( points.pH, .50 ).shift(180,70).shift(270,30); points.logo = points.pA.shiftFractionTowards( points.pH, .50 ).shift(180,70).shift(270,30);
console.log( points.logo );
snippets.logo = new Snippet( 'logo', points.logo ); snippets.logo = new Snippet( 'logo', points.logo );
points.title = points.logo.shift(0, 70) points.title = points.logo.shift(0, 70)
macro('title', { macro('title', {

View file

@ -17,10 +17,6 @@ export default function (part) {
let waistLength = store.get('frontWaistLength') + store.get('backWaistLength') let waistLength = store.get('frontWaistLength') + store.get('backWaistLength')
let flyWidth = store.get('flyWidth') let flyWidth = store.get('flyWidth')
console.log('frontWaistLength:' + store.get('frontWaistLength'))
console.log('backWaistLength:' + store.get('backWaistLength'))
console.log('WaistLength:' + waistLength)
points.pA = new Point(0, 0) points.pA = new Point(0, 0)
points.pB = points.pA.shift(270, waistLength) points.pB = points.pA.shift(270, waistLength)
points.pC = points.pB.shift(180, halfInch * 3.5) points.pC = points.pB.shift(180, halfInch * 3.5)
@ -49,7 +45,6 @@ export default function (part) {
}) })
points.logo = points.pA.shiftFractionTowards(points.pC, 0.5) points.logo = points.pA.shiftFractionTowards(points.pC, 0.5)
console.log(points.logo)
snippets.logo = new Snippet('logo', points.logo) snippets.logo = new Snippet('logo', points.logo)
points.title = points.logo.shift(90, 70) points.title = points.logo.shift(90, 70)
macro('title', { macro('title', {