2018-08-27 14:12:14 +02:00
|
|
|
export function dimensions(macro, points, sa) {
|
2019-08-03 15:03:33 +02:00
|
|
|
macro('hd', {
|
2018-12-21 13:10:15 +01:00
|
|
|
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', {
|
2018-08-27 14:12:14 +02:00
|
|
|
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', {
|
2018-08-27 14:12:14 +02:00
|
|
|
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', {
|
2018-12-21 13:10:15 +01:00
|
|
|
from: points.hem,
|
2020-05-24 15:52:58 +02:00
|
|
|
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', {
|
2018-12-21 13:10:15 +01:00
|
|
|
from: points.hem,
|
2018-08-27 14:12:14 +02:00
|
|
|
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', {
|
2018-12-21 13:10:15 +01:00
|
|
|
from: points.hem,
|
2018-08-27 14:12:14 +02:00
|
|
|
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', {
|
2018-08-27 14:12:14 +02:00
|
|
|
from: points.cfNeck,
|
2020-05-24 15:52:58 +02:00
|
|
|
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
|
|
|
}
|