1
0
Fork 0
freesewing/packages/examples/src/plugin_notches.js

10 lines
265 B
JavaScript

import { box } from './shared'
export default (part) => {
let { Point, snippets, Snippet } = part.shorthand()
snippets.notch = new Snippet('notch', new Point(60, 10))
snippets.bnotch = new Snippet('bnotch', new Point(80, 10))
return box(part, 140, 20)
}