1
0
Fork 0
freesewing/designs/legend/src/scalebox.mjs

11 lines
212 B
JavaScript
Raw Normal View History

2020-08-23 17:26:34 +02:00
import { box } from './shared'
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)
}