1
0
Fork 0
freesewing/sites/dev/docs/reference/settings/sa
Joost De Cock ab3204f9f1 chore: Port FreeSewing.dev to docusaurus
The replaces the NextJS site powering FreeSewing.dev with a Docusaurus
setup. It's part of my efforts to simplify FreeSewing's setup so we can
focus on our core value proposition.
2024-09-28 13:13:48 +02:00
..
readme.mdx chore: Port FreeSewing.dev to docusaurus 2024-09-28 13:13:48 +02:00

---
title: sa
---

The `sa` setting controls the seam allowance. Either provide value in
millimeter or set it to `false` or `0` to disable seam allowance altogether.

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.

## Signature

```js
const settings = {
  Number|Boolean sa=false
}
```

By default, the `sa` setting is `false` and seam allowance is not included.

## Example

```js
import { Aaron } from "@freesewing/aaron"

const pattern = new Aaron({
  sa: 10
})
```

## Notes

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.

The `sa` setting is automatically set to `0` to disable seam allowance if
[settings.complete](/reference/settings/complete) is `false`.