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

10 lines
200 B
JavaScript
Raw Normal View History

2019-08-03 15:03:33 +02:00
import { box } from './shared'
2019-01-27 12:54:18 +01:00
2019-05-25 19:12:31 +02:00
export default part => {
2019-08-03 15:03:33 +02:00
let { Point, snippets, Snippet } = part.shorthand()
2019-01-27 12:54:18 +01:00
2019-08-03 15:03:33 +02:00
snippets.logo = new Snippet('logo', new Point(50, 30))
2019-01-27 12:54:18 +01:00
2019-08-03 15:03:33 +02:00
return box(part, 100, 40)
}