Is it possible to write an overloading function for assigning float, int, etc to QAngle? Like I want to make a variable QAngle and I want to assign it a float value.
When assigning a value to a Unit, the syntax is
QAngle myAngle = 90 * degree;
Then, you can retrieve that value using
double myDegree = myAngle.convert(degree);