1
0
Fork 0
freesewing/markdown/dev/reference/api/snippet/clone/en.md
2021-10-17 18:26:00 +02:00

475 B

title
clone()
Snippet snippet.clone()

Returns a new Snippets object that is a deep copy of this one.

let { Point, points, Snippet, snippets } = part.shorthand();

points.anchor = new Point(35, 35);
snippets.demo = new Snippet("logo", points.anchor)
  .attr("style", "color: #f006");

snippets.clone = snippets.demo
  .clone()
  .attr("data-scale", 0.5);