1
0
Fork 0
freesewing/markdown/dev/reference/api/config/options/deg/en.md

29 lines
546 B
Markdown
Raw Normal View History

2022-02-05 17:44:23 +01:00
---
title: degrees
---
For angles, use a degree option.
## Structure
Your degree option should be a plain object with these properties:
- `deg` : The default value in degrees
- `min` : The minimul that's allowed
- `max` : The maximum that's allowed
- `hide` <small>(optional)</small> : A method to [control the optional display of the option][hide]
2022-02-05 17:44:23 +01:00
[hide]: /reference/api/config/options#optionally-hide-options-by-configuring-a-hide-method
## Example
```js
options: {
collarAngle: {
deg: 85,
min: 60
max: 130
}
}
```