1
0
Fork 0
freesewing/packages/examples/src/snippets_buttonhole-end.js
2021-04-17 12:54:50 +02:00

10 lines
251 B
JavaScript

import { box } from './shared'
export default (part) => {
let { Point, points, Snippet, snippets } = part.shorthand()
points.anchor = new Point(50, 0)
snippets.demo = new Snippet('buttonhole-end', points.anchor)
return box(part, 100, 10)
}