2020-08-23 17:26:34 +02:00
|
|
|
import { box } from './shared'
|
2020-05-31 16:52:58 +02:00
|
|
|
|
|
|
|
export default (part) => {
|
|
|
|
const { points, Point, macro } = part.shorthand()
|
|
|
|
|
|
|
|
points.a = new Point(55, 25)
|
|
|
|
macro('scalebox', { at: points.a })
|
|
|
|
|
|
|
|
return box(part, 110, 55)
|
|
|
|
}
|