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,
|
|
|
|
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,
|
|
|
|
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,
|
|
|
|
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,
|
2018-08-27 14:12:14 +02:00
|
|
|
to: points.aaronArmhole,
|
|
|
|
x: points.aaronArmhole.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,
|
|
|
|
x: points.aaronArmhole.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,
|
|
|
|
x: points.aaronArmhole.x + sa + 45
|
2019-08-03 15:03:33 +02:00
|
|
|
})
|
|
|
|
macro('hd', {
|
2018-08-27 14:12:14 +02:00
|
|
|
from: points.cfNeck,
|
|
|
|
to: points.aaronArmhole,
|
|
|
|
y: points.neck.y - sa - 45
|
2019-08-03 15:03:33 +02:00
|
|
|
})
|
2018-08-11 16:42:35 +02:00
|
|
|
}
|