1
0
Fork 0
freesewing/markdown/dev/reference/snippets/notch/en.md

27 lines
453 B
Markdown
Raw Normal View History

---
title: notch
---
The `notch` snippet is intended for notches.
It is provided by [plugin-notches](/reference/plugins/notches/).
## Example
<Example caption="An example of the notch snippet">
```js
({ Point, Path, paths, Snippet, snippets, part }) => {
snippets.demo = new Snippet('notch', new Point(0,0))
2022-02-19 08:04:25 +01:00
// Prevent clipping
paths.diag = new Path()
.move(new Point(-50,-4))
.move(new Point(50,4))
return part
}
```
</Example>