1
0
Fork 0
freesewing/packages/legend/src/scalebox.js

11 lines
222 B
JavaScript
Raw Normal View History

import { box, drawLine } 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)
}