2022-02-19 08:04:25 +01:00
|
|
|
---
|
2021-10-17 18:26:00 +02:00
|
|
|
title: sa
|
|
|
|
---
|
2021-08-25 16:09:31 +02:00
|
|
|
|
2022-10-02 17:41:04 +02:00
|
|
|
The `sa` setting controls the seam allowance. Either provide value in
|
|
|
|
millimeter or set it to `false` or `0` to disable seam allowance altogether.
|
|
|
|
|
2022-12-14 21:02:30 -08:00
|
|
|
Setting a seam allowance causes the pattern to be generated with
|
|
|
|
additional lines so pattern pieces can be cut out with the correct
|
|
|
|
seam allowance included.
|
|
|
|
|
2022-10-02 17:41:04 +02:00
|
|
|
## Signature
|
2021-10-17 18:26:00 +02:00
|
|
|
|
2021-08-25 16:09:31 +02:00
|
|
|
```js
|
2022-10-02 17:41:04 +02:00
|
|
|
const settings = {
|
|
|
|
Number|Boolean sa=false
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2022-12-14 21:02:30 -08:00
|
|
|
By default, the `sa` setting is `false` and seam allowance is not included.
|
2022-10-02 17:41:04 +02:00
|
|
|
|
|
|
|
## Example
|
2021-08-25 16:09:31 +02:00
|
|
|
|
2022-10-02 17:41:04 +02:00
|
|
|
```js
|
|
|
|
import { Aaron } from "@freesewing/aaron"
|
|
|
|
|
|
|
|
const pattern = new Aaron({
|
2021-08-25 16:09:31 +02:00
|
|
|
sa: 10
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
2022-10-02 17:41:04 +02:00
|
|
|
## Notes
|
2021-08-25 16:09:31 +02:00
|
|
|
|
2022-12-14 21:02:30 -08:00
|
|
|
The `sa` setting does not automatically cause seam allowances to
|
|
|
|
be displayed on a pattern.
|
|
|
|
Instead, it is up to the pattern designer to have the design check
|
|
|
|
for the `sa` setting and include the appropriate seam allowance lines
|
|
|
|
on the pattern when `sa` is set to a non-zero numeric value.
|
2021-08-25 16:09:31 +02:00
|
|
|
|
2022-12-14 21:02:30 -08:00
|
|
|
The `sa` setting is automatically set to `0` to disable seam allowance if
|
|
|
|
[settings.complete](/reference/settings/complete) is `false`.
|