1
0
Fork 0
freesewing/designs/aaron/src/shared.js

38 lines
774 B
JavaScript
Raw Normal View History

export function dimensions(macro, points, sa) {
2019-08-03 15:03:33 +02:00
macro('hd', {
from: points.cfHem,
to: points.hem,
2021-04-24 10:16:31 +02:00
y: points.hem.y + sa * 2.5 + 15,
2019-08-03 15:03:33 +02:00
})
macro('hd', {
from: points.cfNeck,
to: points.strapLeft,
2021-04-24 10:16:31 +02:00
y: points.neck.y - sa - 15,
2019-08-03 15:03:33 +02:00
})
macro('hd', {
from: points.cfNeck,
to: points.strapRight,
2021-04-24 10:16:31 +02:00
y: points.neck.y - sa - 30,
2019-08-03 15:03:33 +02:00
})
macro('vd', {
from: points.hem,
to: points.armhole,
2021-04-24 10:16:31 +02:00
x: points.armhole.x + sa + 15,
2019-08-03 15:03:33 +02:00
})
macro('vd', {
from: points.hem,
to: points.strapRight,
2021-04-24 10:16:31 +02:00
x: points.armhole.x + sa + 30,
2019-08-03 15:03:33 +02:00
})
macro('vd', {
from: points.hem,
to: points.strapLeft,
2021-04-24 10:16:31 +02:00
x: points.armhole.x + sa + 45,
2019-08-03 15:03:33 +02:00
})
macro('hd', {
from: points.cfNeck,
to: points.armhole,
2021-04-24 10:16:31 +02:00
y: points.neck.y - sa - 45,
2019-08-03 15:03:33 +02:00
})
2018-08-11 16:42:35 +02:00
}