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

22 lines
546 B
Markdown
Raw Normal View History

2022-02-19 08:04:25 +01:00
---
title: complete
---
2021-12-28 21:07:45 +01:00
The `complete` setting controls the level of details that's included on your pattern.
This has different uses, such as generating patterns to be cut out with a laser cutter.
2022-02-19 08:04:25 +01:00
The default `complete` setting is `true`.
2021-12-28 21:07:45 +01:00
Set this to `false` to draft a base outline of the pattern, rather than a fully detailed pattern.
<Note>
Setting this to `false` will force [sa](/reference/api/settings/sa) to be set to `false`.
</Note>
```js
2021-12-28 21:07:45 +01:00
import Brian from "@freesewing/brian";
2021-12-28 21:07:45 +01:00
const pattern = new Brian({
complete: false
})
```