2022-09-30 15:34:59 +02:00
|
|
|
---
|
|
|
|
title: complete
|
|
|
|
---
|
|
|
|
|
|
|
|
The `complete` setting controls the level of detail that is included on a
|
2022-10-02 17:41:04 +02:00
|
|
|
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.
|
2022-09-30 15:34:59 +02:00
|
|
|
|
|
|
|
## 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
|
2022-10-02 17:41:04 +02:00
|
|
|
import { Aaron } from "@freesewing/aaron"
|
2022-09-30 15:34:59 +02:00
|
|
|
|
|
|
|
const pattern = new Aaron({
|
|
|
|
complete: false
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
|
|
|
## Notes
|
|
|
|
|
2022-10-02 17:41:04 +02:00
|
|
|
Setting `complete` to `false` will force [sa](/reference/settings/sa) to
|
2022-09-30 15:34:59 +02:00
|
|
|
also be set to `false`.
|
|
|
|
|