Grainline
This commit is contained in:
parent
e742924ac0
commit
aaf4ec66c5
3 changed files with 14 additions and 1 deletions
|
@ -11,7 +11,7 @@ export default {
|
||||||
optionGroups: {
|
optionGroups: {
|
||||||
style: ['size','hungry','nosePointiness','aggressive'],
|
style: ['size','hungry','nosePointiness','aggressive'],
|
||||||
},
|
},
|
||||||
measurements: ['neck'],
|
measurements: [],
|
||||||
parts: ['body','tail','aboveMouth','belly','topFin','bottomFin','mouth','lowerTeeth','upperTeeth'],
|
parts: ['body','tail','aboveMouth','belly','topFin','bottomFin','mouth','lowerTeeth','upperTeeth'],
|
||||||
dependencies: {
|
dependencies: {
|
||||||
tail: 'body',
|
tail: 'body',
|
||||||
|
|
|
@ -181,6 +181,13 @@ export default function (part) {
|
||||||
snippets.mouth1 = new Snippet('bnotch', points.bellyMouthSnippet1)
|
snippets.mouth1 = new Snippet('bnotch', points.bellyMouthSnippet1)
|
||||||
snippets.mouth2 = new Snippet('bnotch', points.bellyMouthSnippet2)
|
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) {
|
if (paperless) {
|
||||||
macro('hd', {
|
macro('hd', {
|
||||||
from: points.belly01,
|
from: points.belly01,
|
||||||
|
|
|
@ -485,6 +485,12 @@ export default function (part) {
|
||||||
d: -5,
|
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.titleAnchor = points.body04.shiftFractionTowards(points.body17, 0.4)
|
||||||
points.logoAnchor = points.body06.shiftFractionTowards(points.body16, 0.6)
|
points.logoAnchor = points.body06.shiftFractionTowards(points.body16, 0.6)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue