2021-10-17 18:26:00 +02:00
|
|
|
---
|
|
|
|
title: sa
|
|
|
|
---
|
2021-08-25 16:09:31 +02:00
|
|
|
|
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.
|
2021-10-17 18:26:00 +02:00
|
|
|
|
2021-08-25 16:09:31 +02:00
|
|
|
```js
|
2021-12-28 21:07:45 +01:00
|
|
|
import Brian from "@freesewing/brian";
|
2021-08-25 16:09:31 +02:00
|
|
|
|
2021-12-28 21:07:45 +01:00
|
|
|
const pattern = new Brian({
|
2021-08-25 16:09:31 +02:00
|
|
|
sa: 10
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
|
|
|
<Note>
|
|
|
|
|
|
|
|
This is ignored if [settings.complete](#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>
|
|
|
|
|
2021-08-25 16:09:31 +02:00
|
|
|
</Note>
|