Description
Is your feature request related to a problem? Please describe.
I need to represent the ratio between a length and an angle in my project. As far as I am aware there is no way to represent this in UnitsNet.
This quantity is used frequently in the manufacturing industry, and is often used to represent the depth drilled per revolution of a cutter. It can also be used to represent arc lengths, which is generally useful in many forms of mathematics.
Describe the solution you'd like
I would like a new quantity type "LengthPerAngle".
A reasonable minimum set of units would be something like the following, but of course more units are possible:
- MillimeterPerDegree
- MillimeterPerGradian
- MillimeterPerRadian
- MillimeterPerRevolution
- CentimeterPerDegree
- CentimeterPerGradian
- CentimeterPerRadian
- CentimeterPerRevolution
- MeterPerDegree
- MeterPerGradian
- MeterPerRadian
- MeterPerRevolution
- InchPerDegree
- InchPerGradian
- InchPerRadian
- InchPerRevolution
- FootPerDegree
- FootPerGradian
- FootPerRadian
- FootPerRevolution
- YardPerDegree
- YardPerGradian
- YardPerRadian
- YardPerRevolution
Describe alternatives you've considered
As far as I am aware, the only alternative is to manage the units and conversions manually.