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