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

36 lines
707 B
Markdown
Raw Normal View History

---
title: complete
---
The `complete` setting controls the level of detail that is included on a
pattern. Set `complete` to `false` to limit the level of detail on the pattern.
This has different use cases, such as generating patterns to be cut out with a
laser cutter.
## Signature
```js
const settings = {
Boolean complete=true
}
```
The default `complete` setting is `true`.
Set this to `false` to draft a base outline of the pattern, rather than a fully detailed pattern.
## Example
```js
import { Aaron } from "@freesewing/aaron"
const pattern = new Aaron({
complete: false
})
```
## Notes
Setting `complete` to `false` will force [sa](/reference/settings/sa) to
also be set to `false`.