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

16 lines
346 B
JavaScript
Raw Normal View History

import { box } from "./shared";
export default part => {
let { Point, points, Snippet, snippets } = part.shorthand();
2019-05-25 11:11:46 +02:00
points.anchor = new Point(35, 35);
snippets.demo = new Snippet("logo", points.anchor).attr(
"style",
"color: #f006"
);
2019-05-25 11:11:46 +02:00
snippets.clone = snippets.demo.clone().attr("data-scale", 0.5);
return box(part);
};