1
0
Fork 0

Grainline

This commit is contained in:
woutervdub 2022-06-09 16:04:18 -07:00
parent e742924ac0
commit aaf4ec66c5
3 changed files with 14 additions and 1 deletions

View file

@ -11,7 +11,7 @@ export default {
optionGroups: {
style: ['size','hungry','nosePointiness','aggressive'],
},
measurements: ['neck'],
measurements: [],
parts: ['body','tail','aboveMouth','belly','topFin','bottomFin','mouth','lowerTeeth','upperTeeth'],
dependencies: {
tail: 'body',

View file

@ -181,6 +181,13 @@ export default function (part) {
snippets.mouth1 = new Snippet('bnotch', points.bellyMouthSnippet1)
snippets.mouth2 = new Snippet('bnotch', points.bellyMouthSnippet2)
points.grainlineFrom = new Point( points.belly10.x, points.belly02.y *.7 )
points.grainlineTo = new Point( points.belly05.x, points.belly02.y *.7 )
macro("grainline", {
from: points.grainlineFrom,
to: points.grainlineTo,
})
if (paperless) {
macro('hd', {
from: points.belly01,

View file

@ -485,6 +485,12 @@ export default function (part) {
d: -5,
})
points.grainlineFrom = points.body13.shiftFractionTowards(points.body03,0.5)
macro("grainline", {
from: points.grainlineFrom,
to: points.body03,
})
points.titleAnchor = points.body04.shiftFractionTowards(points.body17, 0.4)
points.logoAnchor = points.body06.shiftFractionTowards(points.body16, 0.6)