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

16 lines
263 B
JavaScript
Raw Normal View History

2021-04-16 19:11:18 +02:00
import { box } from './shared'
export default (part) => {
let { Point, Path, points, paths, macro } = part.shorthand()
points.a = new Point(15, 15)
2021-04-16 19:21:36 +02:00
macro('bartack', {
anchor: points.a,
angle: 30,
length: 15
2021-04-16 19:11:18 +02:00
})
return box(part, 60, 30)
}