32 lines
540 B
JavaScript
32 lines
540 B
JavaScript
export default function (part) {
|
|
return part
|
|
/*
|
|
let {
|
|
store,
|
|
sa,
|
|
Point,
|
|
points,
|
|
Path,
|
|
paths,
|
|
options,
|
|
complete,
|
|
paperless,
|
|
macro,
|
|
utils,
|
|
units,
|
|
measurements,
|
|
Snippet,
|
|
snippets
|
|
} = part.shorthand()
|
|
|
|
points.origin = new Point(0, 0)
|
|
snippets.base = new Snippet('bella-front-shoulder-dart', points.origin)
|
|
|
|
points.a = new Point(0, 0)
|
|
points.b = new Point(280, 450)
|
|
|
|
paths.diag = new Path().move(points.a).line(points.b).attr('class', 'hidden')
|
|
|
|
return part
|
|
*/
|
|
}
|