2019-01-27 12:54:18 +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
|
|
|
|
2019-08-03 15:03:33 +02:00
|
|
|
points.anchor = new Point(0, 0)
|
2019-01-27 12:54:18 +01:00
|
|
|
|
2019-08-03 15:03:33 +02:00
|
|
|
macro('scalebox', {
|
2019-01-27 12:54:18 +01:00
|
|
|
at: points.anchor
|
2019-08-03 15:03:33 +02:00
|
|
|
})
|
2019-01-27 12:54:18 +01:00
|
|
|
|
2019-08-03 15:03:33 +02:00
|
|
|
return part
|
|
|
|
}
|