2021-10-17 18:26:00 +02:00
|
|
|
---
|
|
|
|
title: paperless
|
|
|
|
---
|
2021-08-25 16:09:31 +02:00
|
|
|
|
2021-12-28 21:07:45 +01:00
|
|
|
The `paperless` options allows you to generate a variant of the pattern
|
|
|
|
that does not require you to print it. It does that by including dimensions
|
|
|
|
on the pattern, as wel as a grid overlay.
|
|
|
|
|
2021-08-25 16:09:31 +02:00
|
|
|
Set this to `true` to draft a paperless pattern. The default is `false`.
|
|
|
|
|
|
|
|
```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
|
|
|
paperless: true
|
|
|
|
})
|
|
|
|
```
|
2021-10-17 18:26:00 +02:00
|
|
|
|