2018-08-27 14:12:14 +02:00
|
|
|
export function dimensions(macro, points, sa) {
|
|
|
|
macro("hd", {
|
|
|
|
from: points.cfHips,
|
|
|
|
to: points.hips,
|
|
|
|
y: points.hips.y + sa * 2.5 + 15
|
2018-08-11 16:42:35 +02:00
|
|
|
});
|
2018-08-27 14:12:14 +02:00
|
|
|
macro("hd", {
|
|
|
|
from: points.cfNeck,
|
|
|
|
to: points.strapLeft,
|
|
|
|
y: points.neck.y - sa - 15
|
2018-08-11 16:42:35 +02:00
|
|
|
});
|
2018-08-27 14:12:14 +02:00
|
|
|
macro("hd", {
|
|
|
|
from: points.cfNeck,
|
|
|
|
to: points.strapRight,
|
|
|
|
y: points.neck.y - sa - 30
|
2018-08-11 16:42:35 +02:00
|
|
|
});
|
|
|
|
macro("vd", {
|
|
|
|
from: points.hips,
|
2018-08-27 14:12:14 +02:00
|
|
|
to: points.aaronArmhole,
|
|
|
|
x: points.aaronArmhole.x + sa + 15
|
2018-08-11 16:42:35 +02:00
|
|
|
});
|
|
|
|
macro("vd", {
|
|
|
|
from: points.hips,
|
2018-08-27 14:12:14 +02:00
|
|
|
to: points.strapRight,
|
|
|
|
x: points.aaronArmhole.x + sa + 30
|
2018-08-11 16:42:35 +02:00
|
|
|
});
|
|
|
|
macro("vd", {
|
|
|
|
from: points.hips,
|
2018-08-27 14:12:14 +02:00
|
|
|
to: points.strapLeft,
|
|
|
|
x: points.aaronArmhole.x + sa + 45
|
|
|
|
});
|
|
|
|
macro("hd", {
|
|
|
|
from: points.cfNeck,
|
|
|
|
to: points.aaronArmhole,
|
|
|
|
y: points.neck.y - sa - 45
|
2018-08-11 16:42:35 +02:00
|
|
|
});
|
|
|
|
}
|