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

17 lines
278 B
JavaScript
Raw Normal View History

2019-05-25 19:12:31 +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 => {
let { Point, points, macro } = part.shorthand();
2019-01-27 12:54:18 +01:00
2019-05-25 19:12:31 +02:00
points.title = new Point(90, 45);
2019-01-27 12:54:18 +01: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-05-25 19:12:31 +02:00
title: "sleeve",
prefix: "test"
2019-01-27 12:54:18 +01:00
});
2019-05-25 19:12:31 +02:00
return box(part, 200, 70);
2019-01-27 12:54:18 +01:00
};