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

20 lines
421 B
JavaScript

import { box } from './shared.mjs'
import { pluginBundle } from '@freesewing/plugin-bundle'
function legendGrainline({ points, Point, macro, part }) {
points.a = new Point(10, 20)
points.b = new Point(90, 20)
macro('grainline', {
from: points.a,
to: points.b,
})
return box(part, 100, 25)
}
export const grainline = {
name: 'legend.grainline',
plugins: pluginBundle,
draft: legendGrainline,
}