2021-10-17 18:26:00 +02:00
|
|
|
---
|
|
|
|
title: degrees
|
|
|
|
---
|
2021-08-25 16:09:31 +02:00
|
|
|
|
|
|
|
For angles, use degrees.
|
|
|
|
|
|
|
|
Your degree option should be an object with these properties:
|
|
|
|
|
2021-10-17 18:26:00 +02:00
|
|
|
- `deg` : The default value in degrees
|
|
|
|
- `min` : The minimul that's allowed
|
|
|
|
- `max` : The maximum that's allowed
|
2021-08-25 16:09:31 +02:00
|
|
|
|
|
|
|
```js
|
|
|
|
options: {
|
|
|
|
collarAngle: {
|
|
|
|
deg: 85,
|
|
|
|
min: 60
|
|
|
|
max: 130
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|