2022-02-19 08:04:25 +01:00
|
|
|
---
|
2021-10-17 18:26:00 +02:00
|
|
|
title: paperless
|
|
|
|
---
|
2021-08-25 16:09:31 +02:00
|
|
|
|
2022-12-14 21:02:30 -08:00
|
|
|
The `paperless` setting indicates whether a pattern is to be printed onto paper.
|
|
|
|
Set `paperless` to `true` when the pattern will not be printed as a standard paper pattern.
|
|
|
|
Instead, the paperless pattern will include a grid overlay, dimensions, and
|
|
|
|
other information.
|
|
|
|
|
|
|
|
The grid overlay, dimensions, and other information is intended to help users
|
|
|
|
who might transfer the pattern to paper by hand or using a projector.
|
2021-12-28 21:07:45 +01:00
|
|
|
|
2022-10-02 17:41:04 +02:00
|
|
|
## Signature
|
|
|
|
|
|
|
|
```js
|
|
|
|
const settings = {
|
|
|
|
Boolean paperless=false
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2021-08-25 16:09:31 +02:00
|
|
|
Set this to `true` to draft a paperless pattern. The default is `false`.
|
|
|
|
|
2022-10-02 17:41:04 +02:00
|
|
|
## Example
|
|
|
|
|
2021-08-25 16:09:31 +02:00
|
|
|
```js
|
2022-10-02 17:41:04 +02:00
|
|
|
import { Aaron } from "@freesewing/aaron"
|
2021-08-25 16:09:31 +02:00
|
|
|
|
2022-10-02 17:41:04 +02:00
|
|
|
const pattern = new Aaron({
|
2021-08-25 16:09:31 +02:00
|
|
|
paperless: true
|
|
|
|
})
|
|
|
|
```
|
2022-12-14 21:02:30 -08:00
|
|
|
|
|
|
|
## Notes
|
|
|
|
|
|
|
|
The `paperless` setting does not automatically cause dimensions
|
|
|
|
and other information to be generated on a pattern.
|
|
|
|
Instead, it is up to the pattern designer to have the design
|
|
|
|
check for the `paperless` setting,
|
|
|
|
include the appropriate dimensions and information if set to `true`,
|
|
|
|
and omit them if set to `false`.
|
|
|
|
|
|
|
|
The `paperless` setting does automatically cause the grid to be included.
|
|
|
|
|
2022-12-26 07:00:16 -08:00
|
|
|
Setting `paperless` to `true` will also cause the [margin](/reference/settings/margin) to not go below 10 mm.
|