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

11 lines
268 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
2021-01-31 09:22:15 +01:00
export default (part) => {
let { points, Point, snippets, Snippet } = part.shorthand()
points.anchor = new Point(50, 25)
2019-01-27 12:54:18 +01:00
snippets.logo = new Snippet('logo', points.anchor).attr('data-scale', 0.666)
2019-01-27 12:54:18 +01:00
return box(part, 100, 35)
2019-08-03 15:03:33 +02:00
}