2022-02-19 08:04:25 +01:00
|
|
|
---
|
2021-10-17 18:26:00 +02:00
|
|
|
title: complete
|
|
|
|
---
|
2021-08-25 16:09:31 +02:00
|
|
|
|
2021-12-28 21:07:45 +01:00
|
|
|
The `complete` setting controls the level of details that's included on your pattern.
|
2021-08-25 16:09:31 +02:00
|
|
|
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>
|
2021-08-25 16:09:31 +02:00
|
|
|
|
|
|
|
```js
|
2021-12-28 21:07:45 +01:00
|
|
|
import Brian from "@freesewing/brian";
|
2021-08-25 16:09:31 +02:00
|
|
|
|
2021-12-28 21:07:45 +01:00
|
|
|
const pattern = new Brian({
|
2021-08-25 16:09:31 +02:00
|
|
|
complete: false
|
|
|
|
})
|
|
|
|
```
|