A type to represent an angle, taking away ambiguity of if it wants degrees or radians.
Angle a = Angle.degrees(180); Angle b = Angle.radians(3.14159); // note there might be slight changes in precision due to internal conversions
The +, -, +=, and -= operators all work on the angles too.
See Implementation
Added August 29, 2023 (dub v11.1)
A type to represent an angle, taking away ambiguity of if it wants degrees or radians.