1
0
Fork 0
freesewing/packages/plugintest/src/plugin-scalebox.js

16 lines
300 B
JavaScript
Raw Normal View History

2022-01-19 16:23:25 +01:00
const draftScalebox = (part) => {
2022-01-20 09:07:38 +01:00
const { Point, points, macro, options } = part.shorthand()
if (['scalebox', 'all'].indexOf(options.plugin) !== -1) {
points.a = new Point(0, 0)
macro(options.scaleboxType, {
at: points.a,
})
}
return part
}
export default draftScalebox