1
0
Fork 0
freesewing/packages/examples/src/snippets_buttonhole-end.js

11 lines
251 B
JavaScript
Raw Normal View History

2021-04-17 12:54:50 +02:00
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)
}