1
0
Fork 0
freesewing/markdown/dev/reference/api/settings/sa/en.md

26 lines
453 B
Markdown
Raw Normal View History

2022-02-19 08:04:25 +01:00
---
title: sa
---
2021-12-28 21:07:45 +01:00
The `sa` setting controls the seam allowance. It expects a value in mm
or `false` or `0` to disable seam allowance altogether.
```js
2021-12-28 21:07:45 +01:00
import Brian from "@freesewing/brian";
2021-12-28 21:07:45 +01:00
const pattern = new Brian({
sa: 10
})
```
<Note>
2022-08-20 18:07:26 -04:00
This is ignored if [settings.complete](/reference/api/settings/complete) is `false`
2021-12-28 21:07:45 +01:00
<Comment by="joost">
Is it though?
I suspect this is not clearly enforced and we should clarify that.
</Comment>
</Note>