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

17 lines
274 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) => {
2019-08-03 15:03:33 +02:00
let { Point, points, macro } = part.shorthand()
2019-01-27 12:54:18 +01:00
2019-08-03 15:03:33 +02:00
points.title = new Point(90, 45)
2019-01-27 12:54:18 +01:00
2019-08-03 15:03:33 +02:00
macro('title', {
2019-05-25 19:12:31 +02:00
at: points.title,
2019-01-27 12:54:18 +01:00
nr: 4,
2019-08-03 15:03:33 +02:00
title: 'sleeve',
prefix: 'test'
})
2019-01-27 12:54:18 +01:00
2019-08-03 15:03:33 +02:00
return box(part, 200, 70)
}