2021-01-31 09:22:15 +01:00
|
|
|
export default (part) => {
|
2019-08-03 15:03:33 +02:00
|
|
|
let { Point, points, macro } = part.shorthand()
|
2019-01-27 12:54:18 +01:00
|
|
|
|
2021-01-16 14:09:32 +01:00
|
|
|
points.anchor1 = new Point(0, 0)
|
|
|
|
points.anchor2 = new Point(70, 0)
|
2019-01-27 12:54:18 +01:00
|
|
|
|
2021-01-16 14:09:32 +01:00
|
|
|
macro('scalebox', { at: points.anchor1 })
|
|
|
|
macro('miniscale', { at: points.anchor2 })
|
2019-01-27 12:54:18 +01:00
|
|
|
|
2019-08-03 15:03:33 +02:00
|
|
|
return part
|
|
|
|
}
|