diff --git a/designs/hi/src/bottomFin.js b/designs/hi/src/bottomFin.js index 3098c1cddef..eea6870eed5 100644 --- a/designs/hi/src/bottomFin.js +++ b/designs/hi/src/bottomFin.js @@ -101,19 +101,19 @@ export default function (part) { .shiftAlong(store.get('aboveMouthFinLength')) snippets.bottomFin = new Snippet('bnotch', points.bottomFinSnippet) - points.titleAnchor = points.bottomFin02.shiftFractionTowards(points.bottomFin01, 0.4) - points.logoAnchor = points.titleAnchor.shiftFractionTowards(points.bottomFin03, 0.5) + points.titleAnchor = points.bottomFin02.shiftFractionTowards(points.bottomFin01, 0.4).shiftFractionTowards(points.bottomFin03, 0.1) + points.logoAnchor = points.titleAnchor.shiftFractionTowards(points.bottomFin03, 0.4) snippets.logo = new Snippet('logo', points.logoAnchor).attr( 'data-scale', - options.size > 1 ? 1 : (options.size /2) + (options.size > 1 ? 1 : options.size) / 2 ) macro('title', { at: points.titleAnchor, nr: 6, title: 'bottomFin', - scale: options.size, + scale: (options.size > 1 ? 1 : options.size) / 2, }) if (paperless) { diff --git a/designs/hi/src/lowerTeeth.js b/designs/hi/src/lowerTeeth.js index 22f04d58b4f..151eab6fbc4 100644 --- a/designs/hi/src/lowerTeeth.js +++ b/designs/hi/src/lowerTeeth.js @@ -62,7 +62,7 @@ export default function (part) { if (complete) { snippets.lowerTeeth = new Snippet('bnotch', points.lowerTeeth01) - points.titleAnchor = points.lowerTeeth02.shiftFractionTowards(points.lowerTeeth03, 0.5).shiftFractionTowards(points.lowerTeeth01, 0.5) + points.titleAnchor = points.lowerTeeth02.shiftFractionTowards(points.lowerTeeth03, 0.5) //.shiftFractionTowards(points.lowerTeeth01, 0.5) macro('title', { at: points.titleAnchor, diff --git a/designs/hi/src/mouth.js b/designs/hi/src/mouth.js index a8f19cc62eb..bfcdcb11459 100644 --- a/designs/hi/src/mouth.js +++ b/designs/hi/src/mouth.js @@ -92,7 +92,7 @@ export default function (part) { snippets.mouthMidTop = new Snippet('bnotch', points.mouth01) snippets.mouthMidBottom = new Snippet('bnotch', points.mouth03) - points.titleAnchor = points.mouth01.shiftFractionTowards(points.mouth02, 0.23) + points.titleAnchor = points.mouth01.shiftFractionTowards(points.mouth02, 0.33) points.logoAnchor = points.mouth01.shiftFractionTowards(points.mouth04, 0.3) snippets.logo = new Snippet('logo', points.logoAnchor).attr( @@ -104,7 +104,7 @@ export default function (part) { at: points.titleAnchor, nr: 4, title: 'mouth', - scale: options.size / 2, + scale: (options.size > 1 ? 1 : options.size) / 2, }) if (paperless) { diff --git a/designs/hi/src/tail.js b/designs/hi/src/tail.js index 6c8446b8653..5b3cb6a002f 100644 --- a/designs/hi/src/tail.js +++ b/designs/hi/src/tail.js @@ -94,14 +94,14 @@ export default function (part) { snippets.logo = new Snippet('logo', points.logoAnchor).attr( 'data-scale', - options.size > 1 ? 1 : options.size + (options.size > 1 ? 1 : options.size) / 2 ) macro('title', { at: points.titleAnchor, nr: 3, title: 'tail', - scale: options.size, + scale: (options.size > 1 ? 1 : options.size) / 2, }) if (paperless) { diff --git a/designs/hi/src/topFin.js b/designs/hi/src/topFin.js index b2b43068bf1..e1368a9e6d1 100644 --- a/designs/hi/src/topFin.js +++ b/designs/hi/src/topFin.js @@ -79,19 +79,19 @@ export default function (part) { // Complete? if (complete) { - points.titleAnchor = points.topFin01.shiftFractionTowards(points.topFin02, 0.4) - points.logoAnchor = points.titleAnchor.shiftFractionTowards(points.topFin03, 0.5) + points.titleAnchor = points.topFin01.shiftFractionTowards(points.topFin02, 0.5).shiftFractionTowards(points.topFin03, 0.1) + points.logoAnchor = points.titleAnchor.shiftFractionTowards(points.topFin03, 0.4) snippets.logo = new Snippet('logo', points.logoAnchor).attr( 'data-scale', - options.size > 1 ? 1 : (options.size /2) + (options.size > 1 ? 1 : options.size) / 2 ) macro('title', { at: points.titleAnchor, nr: 7, title: 'topFin', - scale: options.size, + scale: (options.size > 1 ? 1 : options.size) / 2, }) if (paperless) {