1
0
Fork 0
freesewing/markdown/dev/reference/config/options/degrees/en.md
2021-10-17 18:26:00 +02:00

21 lines
318 B
Markdown

---
title: degrees
---
For angles, use degrees.
Your degree option should be an object with these properties:
- `deg` : The default value in degrees
- `min` : The minimul that's allowed
- `max` : The maximum that's allowed
```js
options: {
collarAngle: {
deg: 85,
min: 60
max: 130
}
}
```