1
0
Fork 0

chore(tutorial) Removed circumference suffix from measurements

This commit is contained in:
Joost De Cock 2020-06-28 12:27:34 +02:00
parent 721661b281
commit 2ef20d5693
5 changed files with 36 additions and 38 deletions

View file

@ -1,4 +1,4 @@
export default function(part) {
export default function (part) {
let {
Point,
points,
@ -15,11 +15,11 @@ export default function(part) {
// Construct the neck opening
let tweak = 1
let target = (measurements.headCircumference * options.neckRatio) / 4
let target = (measurements.head * options.neckRatio) / 4
let delta
do {
points.right = new Point((tweak * measurements.headCircumference) / 10, 0)
points.bottom = new Point(0, (tweak * measurements.headCircumference) / 12)
points.right = new Point((tweak * measurements.head) / 10, 0)
points.bottom = new Point(0, (tweak * measurements.head) / 12)
points.rightCp1 = points.right.shift(90, points.bottom.dy(points.right) / 2)
points.bottomCp2 = points.bottom.shift(0, points.bottom.dx(points.right) / 2)
@ -45,8 +45,8 @@ export default function(part) {
points.topCp2 = points.bottomCp1.flipY()
// Construct the outline
let width = measurements.headCircumference * options.widthRatio
let length = measurements.headCircumference * options.lengthRatio
let width = measurements.head * options.widthRatio
let length = measurements.head * options.lengthRatio
points.topLeft = new Point(width / -2, points.top.y - (width / 2 - points.right.x))
points.topRight = points.topLeft.shift(0, width)

View file

@ -1,8 +1,8 @@
export default function(part) {
export default function (part) {
let { Point, points, Path, paths, measurements } = part.shorthand()
points.right = new Point(measurements.headCircumference / 10, 0)
points.bottom = new Point(0, measurements.headCircumference / 12)
points.right = new Point(measurements.head / 10, 0)
points.bottom = new Point(0, measurements.head / 12)
points.rightCp1 = points.right.shift(90, points.bottom.dy(points.right) / 2)
points.bottomCp2 = points.bottom.shift(0, points.bottom.dx(points.right) / 2)

View file

@ -1,12 +1,12 @@
export default function(part) {
export default function (part) {
let { Point, points, Path, paths, measurements, options } = part.shorthand()
let tweak = 1
let target = (measurements.headCircumference * options.neckRatio) / 4
let target = (measurements.head * options.neckRatio) / 4
let delta
do {
points.right = new Point((tweak * measurements.headCircumference) / 10, 0)
points.bottom = new Point(0, (tweak * measurements.headCircumference) / 12)
points.right = new Point((tweak * measurements.head) / 10, 0)
points.bottom = new Point(0, (tweak * measurements.head) / 12)
points.rightCp1 = points.right.shift(90, points.bottom.dy(points.right) / 2)
points.bottomCp2 = points.bottom.shift(0, points.bottom.dx(points.right) / 2)

View file

@ -1,8 +1,8 @@
export default function(part) {
export default function (part) {
let { Point, points, Path, paths, measurements, options } = part.shorthand()
let width = measurements.headCircumference * options.widthRatio
let length = measurements.headCircumference * options.lengthRatio
let width = measurements.head * options.widthRatio
let length = measurements.head * options.lengthRatio
points.topLeft = new Point(width / -2, points.top.y - (width / 2 - points.right.x))
points.topRight = points.topLeft.shift(0, width)