1
0
Fork 0

Remove duplicate properties list

This commit is contained in:
jgfichte 2022-01-15 10:46:56 -05:00
parent ddbf11bf71
commit d23b42912d

View file

@ -5,7 +5,7 @@ order: 15
The `Pattern` object in FreeSewing's core library holds all data and logic of a pattern. The `Pattern` object in FreeSewing's core library holds all data and logic of a pattern.
It is the parametric blueprint that when instantiated with a user's measurements and It is the parametric blueprint that when instantiated with a user's measurements and
objects will generated a made-to-measure pattern. objects will generate a made-to-measure pattern.
## Pattern constructor ## Pattern constructor
@ -21,17 +21,6 @@ Refer to the [settings documentation](/reference/api/settings/) for an exhaustiv
## Pattern properties ## Pattern properties
| Property | Description |
| --------:| ----------- |
| `config` | The pattern configuration |
| `is` | A string that will be set to `draft` or `sample` when you respectively draft or sample a pattern. |
| `options` | The options as set by the user |
| `parts` | A plain object to hold your parts |
| `Part` | The [Part](/reference/api/part) constructor |
| `settings` | The settings as set by the user |
| `store` | A [Store](/reference/api/store) instance |
| `svg` | An [Svg](/reference/api/svg) instance |
- `settings` : The settings as set by the user - `settings` : The settings as set by the user
- `options` : the options as set by the user - `options` : the options as set by the user
- `config` : The pattern configuration - `config` : The pattern configuration
@ -39,8 +28,7 @@ Refer to the [settings documentation](/reference/api/settings/) for an exhaustiv
- `Part` : The [Part](/reference/api/part) constructor - `Part` : The [Part](/reference/api/part) constructor
- `store` : A [Store](/reference/api/store) instance - `store` : A [Store](/reference/api/store) instance
- `svg` : An [Svg](/reference/api/svg) instance - `svg` : An [Svg](/reference/api/svg) instance
- `is` : A string that will be set to `draft` or `sample` when you respectively draft or sample a pattern. - `is` : A string that will be set to `draft` or `sample` when you respectively draft or sample a pattern. This allows plugins that hook into your pattern to determine what to do in a given scenario.
This allows plugins that hook into your pattern to determine what to do in a given scenario.
## Pattern methods ## Pattern methods